/* ================================================
   STICKY CORPORATE NAVIGATION
   ================================================ */

.corporate-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.corporate-nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.corporate-nav .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    transition: padding 0.3s ease;
}

.corporate-nav.scrolled .nav-container {
    padding: 15px 30px;
}

/* Logo */
.corporate-nav .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.corporate-nav .nav-logo img {
    height: 55px;
    transition: height 0.3s ease;
}

.corporate-nav.scrolled .nav-logo img {
    height: 45px;
}

/* Menu Items */
.corporate-nav .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 45px;
    flex: 1;
    justify-content: center;
}

.corporate-nav .nav-cta-mobile {
    display: none;
}

.corporate-nav .nav-menu > li {
    position: relative;
}

.corporate-nav .nav-menu > li > a {
    display: block;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.corporate-nav .nav-menu > li > a:hover {
    color: #2c5aa0;
}

/* Hover Underline Animation */
.corporate-nav .nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2c5aa0, #4a7ac4);
    transition: width 0.3s ease;
}

.corporate-nav .nav-menu > li > a:hover::after,
.corporate-nav .nav-menu > li.active > a::after {
    width: 100%;
}

.corporate-nav .nav-menu > li.active > a {
    color: #2c5aa0;
}

/* Dropdown Menu */
.corporate-nav .nav-menu .dropdown {
    position: relative;
}

.corporate-nav .nav-menu .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.corporate-nav .nav-menu .dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.corporate-nav .nav-menu .dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.corporate-nav .nav-menu .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 260px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 15px 0;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.corporate-nav .nav-menu .dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: 20px;
}

.corporate-nav .nav-menu .dropdown-content li {
    list-style: none;
}

.corporate-nav .nav-menu .dropdown-content a {
    display: block;
    padding: 12px 25px;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.corporate-nav .nav-menu .dropdown-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: #2c5aa0;
    transition: width 0.3s ease;
}

.corporate-nav .nav-menu .dropdown-content a:hover {
    background: #f8f9fa;
    color: #2c5aa0;
    padding-left: 30px;
}

.corporate-nav .nav-menu .dropdown-content a:hover::before {
    width: 4px;
}

/* CTA Button */
.corporate-nav .nav-cta {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #2c5aa0, #4a7ac4);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.corporate-nav .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(44, 90, 160, 0.35);
    background: linear-gradient(135deg, #1e4078, #2c5aa0);
    color: #ffffff;
}

.corporate-nav .nav-cta i {
    margin-right: 6px;
    font-size: 13px;
}

/* Mobile Menu Toggle */
.corporate-nav .mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.corporate-nav .mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.corporate-nav .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.corporate-nav .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.corporate-nav .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .corporate-nav .nav-menu {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.4s ease;
    }
    
    .corporate-nav .nav-menu.active {
        max-height: 600px;
        opacity: 1;
        padding: 30px;
    }
    
    .corporate-nav .mobile-toggle {
        display: flex;
    }
    
    .corporate-nav .nav-menu > li {
        width: 100%;
    }
    
    .corporate-nav .nav-menu > li > a::after {
        display: none;
    }
    
    .corporate-nav .nav-menu .dropdown-content {
        position: static;
        box-shadow: none;
        border-radius: 0;
        margin-top: 10px;
        padding: 10px 0 10px 20px;
        background: #f8f9fa;
        transform: none;
    }
    
    .corporate-nav .nav-menu .dropdown:hover .dropdown-content {
        margin-top: 10px;
    }
    
    .corporate-nav .nav-cta-mobile {
        display: block;
    }
    
    .corporate-nav .nav-cta {
        width: 100%;
        text-align: center;
        display: block;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .corporate-nav .nav-container {
        padding: 15px 20px;
    }
    
    .corporate-nav .nav-logo img {
        height: 45px;
    }
    
    .corporate-nav.scrolled .nav-logo img {
        height: 40px;
    }
}

/* Body padding adjustment for fixed nav */
body.has-corporate-nav {
    padding-top: 95px;
}

body.has-corporate-nav.fixed-header {
    padding-top: 95px;
}

/* Hide old header when corporate nav is active */
body.has-corporate-nav #header {
    display: none;
}


/* ================================================
   CORPORATE FOOTER
   ================================================ */

.corporate-footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 1px solid rgba(44, 90, 160, 0.2);
}

.corporate-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Footer Grid Layout */
.corporate-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

/* Footer Column */
.corporate-footer .footer-column {
    display: flex;
    flex-direction: column;
}

.corporate-footer .footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.corporate-footer .footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #2c5aa0, #4a7ac4);
}

/* Company Info Column */
.corporate-footer .company-info {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.corporate-footer .company-info p {
    margin: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.corporate-footer .company-info i {
    color: #2c5aa0;
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 16px;
}

/* Links Column */
.corporate-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.corporate-footer .footer-links li {
    margin-bottom: 12px;
}

.corporate-footer .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.corporate-footer .footer-links a:hover {
    color: #2c5aa0;
    transform: translateX(5px);
}

.corporate-footer .footer-links a::before {
    content: '→';
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: bold;
}

.corporate-footer .footer-links a:hover::before {
    opacity: 1;
}

/* Social Icons */
.corporate-footer .social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 15px;
}

.corporate-footer .social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(44, 90, 160, 0.2);
    border: 1px solid rgba(44, 90, 160, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.corporate-footer .social-icons a:hover {
    background: #2c5aa0;
    border-color: #2c5aa0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
}

/* Services/Products Grid */
.corporate-footer .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.corporate-footer .service-item {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.corporate-footer .service-item:hover {
    color: #2c5aa0;
    transform: translateX(3px);
}

.corporate-footer .service-item i {
    color: #4a7ac4;
    font-size: 16px;
}

/* Footer Bottom/Copyright */
.corporate-footer .footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.corporate-footer .footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Footer Legal Links */
.corporate-footer .legal-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.corporate-footer .legal-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.corporate-footer .legal-links a:hover {
    color: #2c5aa0;
}

/* Soft Divider */
.corporate-footer .divider {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2c5aa0, transparent);
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 767px) {
    .corporate-footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
    
    .corporate-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .corporate-footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .corporate-footer .legal-links {
        justify-content: center;
    }
    
    .corporate-footer .footer-column h3 {
        font-size: 16px;
    }
}


/* ================================================
   CORPORATE HERO SECTION - BANNER SLIDER
   ================================================ */

.corporate-hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #1a1a1a;
    padding: 0;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-slide-1::before {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4080 50%, #1a1a1a 100%);
}

.hero-slide-2::before {
    background: linear-gradient(135deg, #1e4080 0%, #2c5aa0 50%, #4a7ac4 100%);
}

.hero-slide-3::before {
    background: linear-gradient(135deg, #34568B 0%, #2c5aa0 50%, #1a1a1a 100%);
}

.hero-slide-4::before {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c5aa0 50%, #34568B 100%);
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-shape-1 {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-shape-2 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, rgba(74, 122, 196, 0.1) 25%, transparent 25%);
    background-size: 40px 40px;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: center;
    color: #ffffff;
    animation: slideInContent 0.8s ease 0.3s both;
}

.hero-slide.active .hero-content {
    animation: slideInContent 0.8s ease 0.3s forwards;
}

@keyframes slideInContent {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.hero-content .hero-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content .hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 14px 35px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-hero-primary {
    background: linear-gradient(90deg, #4a7ac4, #2c5aa0);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.4);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-dot.active {
    background: #ffffff;
    width: 32px;
    border-radius: 6px;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 20px;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow.prev {
    left: 30px;
}

.hero-arrow.next {
    right: 30px;
}

.hero-counter {
    position: absolute;
    top: 30px;
    right: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 10;
}

@media (max-width: 1024px) {
    .corporate-hero {
        height: 500px;
    }
    .hero-content h1 {
        font-size: 42px;
    }
    .hero-content .hero-tagline {
        font-size: 16px;
    }
    .hero-arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    .hero-arrow.prev {
        left: 20px;
    }
    .hero-arrow.next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .corporate-hero {
        height: 400px;
    }
    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .hero-content .hero-tagline {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .hero-content .hero-cta {
        gap: 12px;
    }
    .btn-hero {
        padding: 12px 24px;
        font-size: 14px;
    }
    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .hero-arrow.prev {
        left: 15px;
    }
    .hero-arrow.next {
        right: 15px;
    }
    .hero-dots {
        bottom: 20px;
    }
    .hero-counter {
        top: 20px;
        right: 20px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .corporate-hero {
        height: 350px;
    }
    .hero-content h1 {
        font-size: 26px;
        margin-bottom: 12px;
    }
    .hero-content .hero-tagline {
        font-size: 13px;
        margin-bottom: 25px;
    }
    .btn-hero {
        padding: 10px 20px;
        font-size: 13px;
        width: 80%;
        margin: 0 auto;
    }
    .hero-content .hero-cta {
        flex-direction: column;
    }
    .hero-arrow {
        display: none;
    }
    .hero-dots {
        gap: 8px;
    }
    .hero-dot {
        width: 10px;
        height: 10px;
    }
    .hero-dot.active {
        width: 28px;
    }
}


/* ================================================
   CORPORATE SERVICES SECTION
   ================================================ */

.corporate-services {
    padding: 100px 0;
    background: #f8f9fa;
}

.corporate-services .section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.corporate-services .section-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.corporate-services .section-heading h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #2c5aa0;
    border-radius: 2px;
}

.corporate-services .section-heading p {
    font-size: 18px;
    color: #666;
    max-width: 650px;
    margin: 30px auto 0;
    line-height: 1.7;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #4a7ac4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #e8f0f9, #d4e4f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.service-card .service-icon i {
    font-size: 42px;
    color: #2c5aa0;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #2c5aa0, #4a7ac4);
    transform: rotateY(360deg);
}

.service-card:hover .service-icon i {
    color: #ffffff;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 18px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #2c5aa0;
}

.service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    color: #2c5aa0;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card .service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* Service Grid Layout */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.service-col {
    padding: 0 15px;
    flex: 0 0 25%;
    max-width: 25%;
}

@media (max-width: 991px) {
    .service-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .service-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .corporate-services {
        padding: 60px 0;
    }
    .corporate-services .section-heading h2 {
        font-size: 32px;
    }
}


/* ================================================
   CORPORATE ABOUT US SECTION
   ================================================ */

.corporate-about {
    padding: 100px 0;
    background: #ffffff;
}

.about-image-section {
    position: relative;
    margin-bottom: 50px;
}

.about-image-section img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.about-image-overlay {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, #2c5aa0, #4a7ac4);
    color: #ffffff;
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(44, 90, 160, 0.3);
    text-align: center;
    min-width: 200px;
}

.about-image-overlay .years {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.about-image-overlay .label {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content .about-tagline {
    font-size: 20px;
    color: #2c5aa0;
    font-weight: 600;
    margin-bottom: 25px;
    font-style: italic;
}

.about-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Mission & Values Cards */
.mission-values {
    margin-top: 60px;
}

.mission-values .row {
    margin: 0 -15px;
}

.value-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 35px 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    height: 100%;
}

.value-card:hover {
    background: #ffffff;
    border-left-color: #2c5aa0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.value-card .value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5aa0, #4a7ac4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-card .value-icon i {
    font-size: 28px;
    color: #ffffff;
}

.value-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
}

.timeline-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2c5aa0, #4a7ac4);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: calc(50% - 40px);
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #2c5aa0;
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(44, 90, 160, 0.2);
    z-index: 2;
}

.timeline-year {
    font-size: 24px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 12px;
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #ffffff;
}

.team-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.team-section .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.team-member-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.team-member-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f0f9, #d4e4f7);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member-card:hover .team-member-image img {
    transform: scale(1.1);
}

.team-member-image .member-icon {
    font-size: 80px;
    color: #2c5aa0;
    opacity: 0.3;
}

.team-member-info {
    padding: 30px 25px;
    text-align: center;
}

.team-member-info h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.team-member-info .position {
    font-size: 14px;
    color: #2c5aa0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.team-member-info .contact-info {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.team-member-info .contact-info i {
    color: #2c5aa0;
    margin-right: 8px;
}

/* Soft Dividers */
.soft-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(44, 90, 160, 0.2), transparent);
    margin: 60px 0;
}

/* Responsive About Section */
@media (max-width: 991px) {
    .about-image-overlay {
        position: static;
        display: inline-block;
        margin-top: 20px;
    }
    .timeline-wrapper::before {
        left: 30px;
    }
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
        margin-right: 0;
    }
    .timeline-dot {
        left: 30px;
    }
}

@media (max-width: 767px) {
    .corporate-about,
    .timeline-section,
    .team-section {
        padding: 60px 0;
    }
    .about-content h2,
    .timeline-section h2,
    .team-section h2 {
        font-size: 32px;
    }
}
/* ================================================
   REQUEST A CALLBACK SECTION
   ================================================ */

.request-a-callback {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4080 100%);
    padding: 80px 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.2);
    position: relative;
    overflow: hidden;
}

.request-a-callback::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.request-a-callback::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 1;
}

.request-a-callback-content {
    flex: 1;
    color: #ffffff;
    z-index: 2;
    position: relative;
}

.request-a-callback-content h3 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.request-a-callback-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.request-a-callback-form {
    flex: 1;
    z-index: 2;
    position: relative;
}

.request-a-callback-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.request-a-callback-form input {
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.request-a-callback-form input::placeholder {
    color: #999;
}

.request-a-callback-form input:focus {
    outline: none;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.request-a-callback-form button {
    padding: 16px 30px;
    background: linear-gradient(90deg, #4a7ac4, #2c5aa0);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
}

.request-a-callback-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.4);
}

.request-a-callback-form button:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .request-a-callback {
        flex-direction: column;
        padding: 60px 40px;
        gap: 40px;
    }

    .request-a-callback-content h3 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .request-a-callback {
        padding: 50px 20px;
        gap: 30px;
    }

    .request-a-callback-content h3 {
        font-size: 28px;
    }

    .request-a-callback-content p {
        font-size: 14px;
    }

    .request-a-callback-form input,
    .request-a-callback-form button {
        font-size: 14px;
        padding: 14px 16px;
    }

    .request-a-callback::before {
        width: 300px;
        height: 300px;
        right: -15%;
        top: -30%;
    }

    .request-a-callback::after {
        width: 250px;
        height: 250px;
        left: -10%;
        bottom: -20%;
    }
}

/* ================================================
   EXPERT TEAM SECTION
   ================================================ */

#expert_team {
    background: linear-gradient(to bottom, #f8f9fb 0%, #ffffff 100%);
    padding: 50px 0;
    position: relative;
}

#expert_team .heading {
    text-align: center;
    margin-bottom: 60px;
}

#expert_team .heading h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

#expert_team .heading p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

#expert_team .team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

#expert_team .team-member {
    background: #ffffff;
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #2c5aa0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#expert_team .team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #4a7ac4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

#expert_team .team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(44, 90, 160, 0.15);
}

#expert_team .team-member:hover::before {
    transform: scaleX(1);
}

#expert_team .team-member h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    letter-spacing: -0.3px;
}

#expert_team .team-member h4 span {
    display: block;
    font-size: 13px;
    color: #2c5aa0;
    font-weight: 600;
    margin-top: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#expert_team .team-member p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

#expert_team .team-expertise {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e8e8e8;
}

#expert_team .expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#expert_team .expertise-list li {
    font-size: 13px;
    color: #666;
    padding: 6px 0;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 6px;
    background: #f0f5fa;
    padding: 6px 12px;
    border-radius: 20px;
    color: #2c5aa0;
}

#expert_team .social-links {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

#expert_team .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f0f5fa;
    border-radius: 50%;
    color: #2c5aa0;
    transition: all 0.3s ease;
    font-size: 16px;
}

#expert_team .social-links a:hover {
    background: #2c5aa0;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 991px) {
    #expert_team {
        padding: 80px 0;
    }

    #expert_team .heading h2 {
        font-size: 36px;
    }

    #expert_team .team-container {
        gap: 30px;
    }

    #expert_team .team-member {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    #expert_team {
        padding: 60px 0;
    }

    #expert_team .heading h2 {
        font-size: 28px;
    }

    #expert_team .team-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    #expert_team .team-member {
        padding: 35px 25px;
    }

    #expert_team .team-member h4 {
        font-size: 20px;
    }
}

/* ================================================
   CONTACT FORM SECTION
   ================================================ */

#contact-form {
    padding: 0px 0;
}

#contact-form .contact-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -0.5px;
}

#contact-form .location-info {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4080 100%);
    padding: 50px 40px;
    border-radius: 12px;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.2);
    position: relative;
    overflow: hidden;
}

#contact-form .location-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

#contact-form .location-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    color: #ffffff;
}

#contact-form .location-info .info-item {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

#contact-form .location-info .info-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    display: block;
}

#contact-form .location-info .info-content {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff;
}

#contact-form .location-info i {
    margin-right: 10px;
    font-size: 16px;
}

#contact-form .contact-form-wrapper {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

#contact-form .contact-form-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: -0.3px;
}

#contact-form .contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

#contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

#contact-form .form-row.full {
    grid-template-columns: 1fr;
}

#contact-form .form-group {
    display: flex;
    flex-direction: column;
}

#contact-form .input,
#contact-form textarea {
    padding: 16px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

#contact-form .input::placeholder,
#contact-form textarea::placeholder {
    color: #999;
}

#contact-form .input:focus,
#contact-form textarea:focus {
    border-color: #2c5aa0;
    background: #f8f9fb;
    box-shadow: 0 0 0 4px rgba(44, 90, 160, 0.08);
}

#contact-form textarea {
    resize: vertical;
    min-height: 140px;
    margin-bottom: 20px;
}

#contact-form .form-messages {
    margin-bottom: 20px;
}

#contact-form .success,
#contact-form .error {
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

#contact-form .success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#contact-form .error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#contact-form .btn-submit {
    padding: 16px 40px;
    background: linear-gradient(90deg, #2c5aa0, #1e4080);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
}

#contact-form .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.4);
}

#contact-form .btn-submit:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 991px) {
    #contact-form {
        padding: 60px 0;
    }

    #contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    #contact-form .location-info,
    #contact-form .contact-form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    #contact-form {
        padding: 50px 0;
    }

    #contact-form .contact-section-title {
        font-size: 28px;
    }

    #contact-form .location-info {
        margin-bottom: 30px;
    }

    #contact-form .location-info h3 {
        font-size: 22px;
    }

    #contact-form .location-info .info-item {
        margin-bottom: 20px;
    }

    #contact-form .input,
    #contact-form textarea {
        font-size: 14px;
        padding: 14px 16px;
    }

    #contact-form textarea {
        min-height: 120px;
    }

    #contact-form .btn-submit {
        width: 100%;
        padding: 14px 30px;
        text-align: center;
    }
}


/* ================================================
   PAGE TITLE SECTION
   ================================================ */

.page-title-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4080 100%);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-title-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-title-content {
    position: relative;
    z-index: 2;
}

.page-title-section h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.page-title-section .breadcrumb {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.page-title-section .breadcrumb a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-title-section .breadcrumb a:hover {
    color: #ffffff;
}

@media (max-width: 767px) {
    .page-title-section {
        padding: 60px 0;
    }

    .page-title-section h1 {
        font-size: 36px;
    }

    .page-title-section .breadcrumb {
        font-size: 12px;
    }
}


/* ================================================
   PARTNERS SECTION
   ================================================ */

.partners-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.partners-intro {
    text-align: center;
    margin-bottom: 40px;
}

.partners-intro h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.partners-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #4a7ac4);
    border-radius: 2px;
}

.partners-intro p {
    font-size: 16px;
    color: #666666;
    margin: 30px auto 0;
    line-height: 1.8;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 100px;
}

.partner-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(44, 90, 160, 0.15);
    border-color: #2c5aa0;
}

.partner-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    overflow: hidden;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo img {
    transform: scale(1.05);
}

.partner-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    margin-top: 0;
}

.partner-card p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.6;
    min-height: 60px;
}

.partner-link {
    display: inline-block;
    color: #2c5aa0;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.partner-link i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-link {
    color: #4a7ac4;
}

.partner-card:hover .partner-link i {
    transform: translateX(3px);
}

/* Partnership Benefits */
.partnership-benefits {
    background: #ffffff;
    padding: 80px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.partnership-benefits h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.partnership-benefits h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #4a7ac4);
    border-radius: 2px;
}

.benefits-grid {
    margin-top: 60px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #2c5aa0, #4a7ac4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-icon i {
    font-size: 32px;
    color: #ffffff;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Partners CTA */
.partners-cta {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4080 100%);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.partners-cta::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.partners-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.partners-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.95);
}

.partners-cta .btn {
    position: relative;
    z-index: 2;
}

/* Responsive Partners */
@media (max-width: 991px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .partnership-benefits {
        padding: 60px;
    }

    .partnership-benefits h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .partners-section {
        padding: 60px 0;
    }

    .partners-intro {
        margin-bottom: 40px;
    }

    .partners-intro h2 {
        font-size: 32px;
    }

    .partners-intro p {
        font-size: 14px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 60px;
    }

    .partner-card {
        padding: 30px;
    }

    .partnership-benefits {
        padding: 30px;
        margin-bottom: 40px;
    }

    .partnership-benefits h2 {
        font-size: 28px;
    }

    .benefits-grid {
        margin-top: 40px;
    }

    .benefit-item {
        padding: 20px;
    }

    .partners-cta {
        padding: 60px 0;
    }

    .partners-cta h2 {
        font-size: 28px;
    }

    .partners-cta p {
        font-size: 16px;
    }
}

