:root {
    --primary-color:#18868a ;
    /* Deep Navy */
    --secondary-color:  #f8b400;
    /* Professional Blue */
    --accent-color: #f8b400;
    /* Subtle Gold for CTA */
    --text-dark: #333333;
    --text-light: #6c757d;
    --bg-light: #fbfbfb;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.orange-headline {
    color: var(--secondary-color);
   
}
/* -------------------------- Header & Navigation --- */
.navbar {
    transition: all 0.3s ease;
    padding: 15px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 0px 0;
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.btn-cta {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}

.btn-cta:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

/* ---------------------------- Hero Slider (Slider Revolution Style) --- */
.hero-slider {
    width: 100%;
    height: 90vh;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 33, 71, 0.85), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding-left: 10%;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease 0.3s;
}

.slide-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease 0.5s;
}

.swiper-slide-active .slide-content h1,
.swiper-slide-active .slide-content p {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------- Section Styling --- */
section {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.section-title h2 {
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* ------------------------------------------ About & Values --- */
.card-about {
    border: none;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 15px;
    height: 100%;
    transition: 0.3s;
}

.card-about:hover {
    background: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}
/* --- Enhanced Core Values Styling --- */
.value-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 33, 71, 0.08);
    border-color: var(--secondary-color);
}

.value-icon-container {
    width: 70px;
    height: 70px;
    background: rgba(0, 86, 179, 0.05);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    transition: 0.3s;
}

.value-card:hover .value-icon-container {
    background: var(--primary-color);
    color: #ffffff;
    transform: rotateY(360deg);
}

.value-card h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* ----------------------------------------- Service Catalog Styling --- */
.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
    height: 100%;
    border: 1px solid #edf2f7;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--secondary-color);
}

.service-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/*------------------------- Exclusive Card Design */
.exclusive-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    position: relative;
    transition: 0.4s;
    height: 100%;
}

.exclusive-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(0, 33, 71, 0.1);
}

.exclusive-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.text-navy {
    color: var(--primary-color);
}

/* ----------------------- CTA Bar Styling --- */
.cta-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

/* ----------------------------Decorative background circles */
.cta-bar::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.cta-bar h3 {
    letter-spacing: -0.5px;
}

.cta-bar .btn-light {
    color: var(--primary-color);
    border-radius: 50px;
    transition: 0.3s;
}

.cta-bar .btn-light:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.05);
}

/* ----------------------------------- Why Sharp --- */
.why-box {
    text-align: center;
    padding: 30px;
}

.why-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: 0.3s;
}

.why-box:hover .why-icon {
    background: var(--primary-color);
    color: white;
}

/* ------------------------------------- Expert Section Styling --- */
.expert-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid #eee;
}

.expert-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.expert-img-container {
    position: relative;
    overflow: hidden;
}

.expert-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: 0.5s;
}

.expert-card:hover .expert-img {
    transform: scale(1.05);
}

.expert-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(0, 33, 71, 0.9);
    padding: 15px 0;
    transition: 0.4s;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.expert-card:hover .expert-social {
    bottom: 0;
}

.expert-social a {
    color: white;
    font-size: 1.2rem;
    transition: 0.3s;
}

.expert-social a:hover {
    color: var(--accent-color);
}

.expert-info {
    padding: 30px 20px;
}

/* ----------------------------------- Client Carousel Styling --- */
.client-logo {
    max-width: 190px;
    height: auto;
    
    opacity: 1;
    transition: all 0.4s ease;
    padding: 10px;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.client-swiper {
    padding: 20px 0;
}

.client-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px; /* Forces all logo containers to the same height */
}

.client-logo {
    max-height: 120px; /* Keeps logos consistent in size */
    width: auto;
    object-fit: contain;
}


/* ------------------------------------- Contact Section Styling --- */
.contact-icon-sm {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: rgba(0, 86, 179, 0.1);
    color: var(--secondary-color);
    text-align: center;
    border-radius: 10px;
    font-size: 1.2rem;
}

.form-control,
.form-select {
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    transition: 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.1);
}

.card.shadow-lg {
    background: #ffffff;
}

/* --- FAQ Section Styling --- */
.accordion-button:not(.collapsed) {
    background-color: rgba(0, 86, 179, 0.05);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 86, 179, 0.1);
}

.accordion-item {
    border: 1px solid #eef2f6 !important;
    transition: 0.3s;
}

.accordion-item:hover {
    border-color: var(--secondary-color) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.accordion-button {
    font-size: 1.05rem;
    color: var(--primary-color);
}

/* ---------------------------------- Footer --- */
footer {
    background: var(--primary-color);
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-logo {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: block;
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.2rem;
    }

    .slide-content {
        padding: 0 20px;
        text-align: center;
    }

    section {
        padding: 60px 0;
    }
}