/* Mobile dropdown menu visibility */
@media (max-width: 1024px) {
    .mobile-dropdown-menu {
        display: none;
    }
    .mobile-nav-item.open > .mobile-dropdown-menu {
        display: block;
    }
}
/* --- MOBILE MENU VISIBILITY --- */
/* (Removed conflicting mobile-menu styles. Use navbar.css for mobile menu slide-in/out.) */
/* Footer Logo Custom Style */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    color: white;
} 
.footer-company-main {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
}
.footer-company-sub {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-top: 0.1rem;
    color: white;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    /* Disable all transitions and animations on mobile for performance */
    *, *::before, *::after {
        transition: none !important;
        animation: none !important;
    }
}
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}
/* Footer Logo Custom Style */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    color: white;
} 
.footer-company-main {
    font-size: 1.15rem;
    font-weight: 700;
    color: #003366;
    letter-spacing: 1px;
    color: white;
}
.footer-company-sub {
    font-size: 0.85rem;
    color: #888;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-top: 0.1rem;
    color: white;
}
/* Responsive scaling for mobile: keep desktop layout, just scale down and use smaller, standard font sizes */
@media (max-width: 480px) {
    html {
        font-size: 13px !important;
    }
    body {
        font-size: 0.95rem !important;
    }
    .container {
        padding: 0 6px !important;
        max-width: 100vw !important;
    }
    h1, .section-title, .hero-title {
        font-size: 1.1rem !important;
    }
    h2, h3, .subtitle, .section-subtitle {
        font-size: 0.95rem !important;
    }
    p, li, .card-text, .description {
        font-size: 0.85rem !important;
    }
    .btn, button {
        font-size: 0.85rem !important;
        padding: 10px 16px !important;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Visually hidden but accessible to screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}







/* Hero Premium Section */
.hero-premium {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #f5f8fc 25%, 
        #e8f0f7 50%, 
        #d4e4f2 75%, 
        #c0d8ea 100%
    );
    text-align: center;
    padding: 100px 20px 100px;
    overflow: hidden;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 32, 91, 0.02) 0%, 
        rgba(0, 102, 204, 0.03) 50%,
        rgba(192, 216, 234, 0.05) 100%
    );
    z-index: 1;
}

.hero-premium-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-premium-title {
    font-size: clamp(2rem, 5vw + 1rem, 4.5rem);
    font-weight: 200;
    color: #00205B;
    letter-spacing: clamp(2px, 1vw + 1px, 12px);
    text-transform: uppercase;
    margin-bottom: 2rem;
    line-height: 1.3;
    position: relative;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-premium-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #C9A961 20%, 
        #D4AF6A 50%, 
        #C9A961 80%, 
        transparent 100%
    );
}

.hero-premium-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    color: #2c3e50;
    letter-spacing: 1px;
    line-height: 1.8;
    margin-bottom: 3rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-premium-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #00205B 0%, #003d9e 100%);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 32, 91, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-premium-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(201, 169, 97, 0.3), 
        transparent
    );
    transition: left 0.6s ease;
}

.hero-premium-button:hover::before {
    left: 100%;
}

.hero-premium-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 32, 91, 0.3);
    background: linear-gradient(135deg, #003d9e 0%, #0052cc 100%);
}

.hero-premium-button i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.hero-premium-button:hover i {
    transform: translateY(3px);
}

.hero-decorative-element {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, 
        rgba(201, 169, 97, 0.08) 0%, 
        rgba(201, 169, 97, 0.04) 50%, 
        transparent 100%
    );
    border-radius: 50%;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-30px, -30px);
    }
}

.hero-decorative-element::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, 
        rgba(0, 102, 204, 0.06) 0%, 
        transparent 70%
    );
    border-radius: 50%;
}

/* Company Statement Section */
.company-statement-section {
    background: white;
    padding: 4rem 0;
}

.company-statement {
    max-width: 70%;
    margin: 0 auto;
    text-align: center;
    font-size: 1.15rem;
    line-height: 2;
    color: #555;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Company Profile Section */
.company-profile-section {
    padding: 6rem 0;
    background: #F8F8F8;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.profile-card {
    background: white;
    padding: 3rem 2rem;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.profile-card:hover {
    border-color: #00205B;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

.profile-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: #00205B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.profile-card:hover .profile-icon {
    background: #0066cc;
    transform: scale(1.1);
}

.profile-icon i {
    font-size: 24px;
    color: white;
}

.profile-card h3 {
    font-size: 1.15rem;
    font-weight: 500;
    color: #00205B;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.profile-card p {
    font-size: 0.95rem;
    color: #666;
    font-weight: 300;
    letter-spacing: 0.3px;
    line-height: 1.6;
}



/* Who We Are Section */
.who-we-are-section {
    padding: 6rem 0;
    background: white;
}

.who-we-are-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 5rem;
    align-items: center;
}

.who-we-are-text {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.who-we-are-text.animated {
    opacity: 1;
    transform: translateX(0);
}

.who-we-are-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #00205B;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
}

.who-we-are-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: #00205B;
}

.who-we-are-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: left;
    font-weight: 300;
}

.who-we-are-text p:first-of-type {
    font-size: 1.15rem;
    color: #333;
    font-weight: 400;
    line-height: 1.8;
}

.who-we-are-image {
    position: relative;
    padding: 20px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.who-we-are-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

/* Vision & Mission Premium Section */
.vision-mission-premium-section {
    padding: 8rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.bubbles-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 213, 242, 0.1) 0%, rgba(107, 182, 232, 0.15) 100%);
    animation: float 20s infinite ease-in-out;
    pointer-events: none;
}

.bubble-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.bubble-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 15%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.bubble-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 10%;
    animation-delay: 1s;
    animation-duration: 28s;
}

.bubble-4 {
    width: 100px;
    height: 100px;
    top: 70%;
    right: 20%;
    animation-delay: 5s;
    animation-duration: 24s;
}

.bubble-5 {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 50%;
    animation-delay: 2s;
    animation-duration: 20s;
}

.bubble-6 {
    width: 90px;
    height: 90px;
    top: 80%;
    right: 5%;
    animation-delay: 4s;
    animation-duration: 26s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) translateX(20px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-50px) translateX(-15px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-20px) translateX(25px) scale(1.05);
        opacity: 0.6;
    }
}

.vision-mission-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vision-premium-box,
.mission-premium-box {
    background: #F8FCFF;
    padding: 4rem 3rem;
    border: 1px solid #D4E8F7;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.vision-premium-box:hover,
.mission-premium-box:hover {
    border-color: #A8D5F2;
    box-shadow: 0 6px 24px rgba(168, 213, 242, 0.15);
    transform: translateY(-5px);
}

.vision-premium-box h3,
.mission-premium-box h3 {
    font-size: 1.75rem;
    font-weight: 400;
    color: #00205B;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1.25rem;
}

.vision-premium-box h3::after,
.mission-premium-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #A8D5F2 0%, #6BB6E8 100%);
}

.vision-premium-box p,
.mission-premium-box p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.9;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.3px;
}



/* What We Do Section */
.what-we-do-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #00205B;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #00205B;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #00205B 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.service-icon i {
    font-size: 28px;
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #00205B;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 6rem 0;
    background: white;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-box,
.vision-box {
    background: white;
    padding: 3rem 2.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.mission-box {
    animation-delay: 0.1s;
}

.vision-box {
    animation-delay: 0.2s;
}

.mission-box:hover,
.vision-box:hover {
    border-color: #00205B;
    box-shadow: 0 4px 20px rgba(0, 32, 91, 0.08);
    transform: translateY(-5px);
}

.mission-box h3,
.vision-box h3 {
    font-size: 1.5rem;
    font-weight: 300;
    color: #00205B;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
}

.mission-box h3::after,
.vision-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #00205B;
}

.mission-box p,
.vision-box p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    font-weight: 300;
    font-style: italic;
}

/* Our Strengths - Premium Icon Grid */
.our-strengths-premium-grid {
    padding: 100px 0;
    background: linear-gradient(to bottom, #FDFBF8 0%, #F9F6F2 100%);
    position: relative;
}

.strengths-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.strength-premium-card {
    background: white;
    padding: 3.5rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(201, 169, 97, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.strength-premium-card:nth-child(1) { animation-delay: 0.1s; }
.strength-premium-card:nth-child(2) { animation-delay: 0.2s; }
.strength-premium-card:nth-child(3) { animation-delay: 0.3s; }
.strength-premium-card:nth-child(4) { animation-delay: 0.4s; }
.strength-premium-card:nth-child(5) { animation-delay: 0.5s; }
.strength-premium-card:nth-child(6) { animation-delay: 0.6s; }

.strength-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #C9A961 50%, 
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.strength-premium-card:hover::before {
    opacity: 1;
}

.strength-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.15);
    border-color: rgba(201, 169, 97, 0.3);
}

.strength-premium-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #F8F6F3 0%, #F0EBE5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid rgba(201, 169, 97, 0.15);
}

.strength-premium-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A961 0%, #D4AF6A 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.strength-premium-card:hover .strength-premium-icon::before {
    opacity: 0.15;
}

.strength-premium-card:hover .strength-premium-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: #C9A961;
    background: linear-gradient(135deg, #FFF9F0 0%, #FFF5E8 100%);
}

.strength-premium-icon i {
    font-size: 32px;
    color: #00205B;
    transition: all 0.4s ease;
}

.strength-premium-card:hover .strength-premium-icon i {
    color: #C9A961;
    transform: scale(1.1);
}

.strength-premium-card h3 {
    font-size: 1.15rem;
    font-weight: 400;
    color: #00205B;
    letter-spacing: 0.5px;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

.strength-premium-card:hover h3 {
    color: #2c3e50;
}

/* Add checkmark indicator */
.strength-premium-card::after {
    content: '✓';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C9A961 0%, #D4AF6A 100%);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease;
}

.strength-premium-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Certification & License - Luxury Card Row */
.certification-luxury-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #FAFAFA 0%, #FFFFFF 100%);
    position: relative;
}

.certification-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-top: -2rem;
    margin-bottom: 5rem;
}

.certification-luxury-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.cert-luxury-card {
    background: white;
    padding: 3.5rem 3rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.cert-luxury-card:nth-child(1) { animation-delay: 0.1s; }
.cert-luxury-card:nth-child(2) { animation-delay: 0.2s; }
.cert-luxury-card:nth-child(3) { animation-delay: 0.3s; }
.cert-luxury-card:nth-child(4) { animation-delay: 0.4s; }

.cert-luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #C9A961 10%, 
        #D4AF6A 50%, 
        #C9A961 90%, 
        transparent 100%
    );
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.cert-luxury-card:hover::before {
    transform: scaleX(1);
}

.cert-luxury-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(201, 169, 97, 0.02) 0%, 
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cert-luxury-card:hover::after {
    opacity: 1;
}

.cert-luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 45px rgba(201, 169, 97, 0.12);
    border-color: rgba(201, 169, 97, 0.2);
}

.cert-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2.5rem;
    background: linear-gradient(135deg, #FDFBF8 0%, #F9F6F2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid rgba(201, 169, 97, 0.15);
}

.cert-icon::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A961 0%, #D4AF6A 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.cert-luxury-card:hover .cert-icon::before {
    opacity: 0.12;
}

.cert-luxury-card:hover .cert-icon {
    transform: scale(1.08);
    border-color: #C9A961;
    background: linear-gradient(135deg, #FFF9F0 0%, #FFF5E8 100%);
}

.cert-icon i {
    font-size: 38px;
    color: #C9A961;
    transition: all 0.4s ease;
}

.cert-luxury-card:hover .cert-icon i {
    transform: scale(1.1);
    color: #D4AF6A;
}

.cert-luxury-card h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #00205B;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.cert-luxury-card:hover h3 {
    color: #2c3e50;
}

/* Decorative badge */
.cert-luxury-card::after {
    content: '✓';
    position: absolute;
    top: 25px;
    right: 25px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C9A961 0%, #D4AF6A 100%);
    color: white;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.5s ease;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.cert-luxury-card:hover::after {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Partners & Clients - Premium Logo Wall */
.partners-clients-premium-section {
    padding: 120px 0;
    background: #FFFFFF;
    position: relative;
}

.partners-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-top: -2rem;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.logo-wall-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-wall-item {
    background: white;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.logo-wall-item:nth-child(1) { animation-delay: 0.05s; }
.logo-wall-item:nth-child(2) { animation-delay: 0.1s; }
.logo-wall-item:nth-child(3) { animation-delay: 0.15s; }
.logo-wall-item:nth-child(4) { animation-delay: 0.2s; }
.logo-wall-item:nth-child(5) { animation-delay: 0.25s; }
.logo-wall-item:nth-child(6) { animation-delay: 0.3s; }
.logo-wall-item:nth-child(7) { animation-delay: 0.35s; }
.logo-wall-item:nth-child(8) { animation-delay: 0.4s; }
.logo-wall-item:nth-child(9) { animation-delay: 0.45s; }
.logo-wall-item:nth-child(10) { animation-delay: 0.5s; }
.logo-wall-item:nth-child(11) { animation-delay: 0.55s; }
.logo-wall-item:nth-child(12) { animation-delay: 0.6s; }

.logo-wall-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 32, 91, 0.02) 0%, 
        rgba(201, 169, 97, 0.02) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-wall-item:hover::before {
    opacity: 1;
}

.logo-wall-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(201, 169, 97, 0.2);
}

.logo-wall-item img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.5);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.logo-wall-item:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}



/* Company Intro Section */
.company-intro-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #00205B;
    margin-bottom: 3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
}

.intro-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #00205B;
}

.intro-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-main {
    font-size: 1.2rem;
    line-height: 2;
    color: #333333;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.intro-secondary {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555555;
    font-weight: 300;
    letter-spacing: 0.2px;
}


/* Company Profile - Premium Intro Block */
.company-intro-premium {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.company-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.company-intro-image {
    position: relative;
    opacity: 0;
    transform: translateX(-40px);
    animation: slideInLeft 1s ease forwards;
    animation-delay: 0.2s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-wrapper {
    position: relative;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid #00205B;
    opacity: 0.15;
    z-index: -1;
}

.image-wrapper img {
    width: 100%;
    height: clamp(260px, 38vw, 520px);
    object-fit: cover;
    display: block;
    filter: brightness(1.05) contrast(0.95);
}

.company-intro-text {
    padding: 40px 0 40px 20px;
    opacity: 0;
    transform: translateX(40px);
    animation: slideInRight 1s ease forwards;
    animation-delay: 0.4s;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.company-intro-title {
    font-size: 2.8rem;
    font-weight: 200;
    color: #00205B;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 3.5rem;
    position: relative;
    padding-bottom: 1.5rem;
    line-height: 1.2;
}

.company-intro-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #00205B 0%, #C9A961 100%);
}

.company-intro-description {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.company-intro-description p {
    font-size: 1.2rem;
    line-height: 2;
    color: #333333;
    font-weight: 300;
    letter-spacing: 0.3px;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    transition: all 0.3s ease;
}

.company-intro-description p:hover {
    transform: translateX(5px);
    color: #00205B;
}

.intro-para-1 {
    font-size: 1.35rem !important;
    font-weight: 400 !important;
    color: #00205B !important;
    line-height: 1.9 !important;
    background: linear-gradient(135deg, rgba(0, 32, 91, 0.02) 0%, rgba(168, 213, 242, 0.05) 100%);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    border-left: 4px solid #00205B;
    animation-delay: 0.2s;
}

.intro-para-2 {
    color: #444444 !important;
    padding: 1.2rem 1.5rem 1.2rem 30px;
    border-left: 3px solid #C9A961;
    background: rgba(201, 169, 97, 0.03);
    border-radius: 4px;
    position: relative;
    animation-delay: 0.4s;
}

.intro-para-2::before {
    content: '〃';
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 2rem;
    color: #C9A961;
    opacity: 0.3;
}

.intro-para-3 {
    color: #555555 !important;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.015);
    border-radius: 6px;
    font-style: italic;
    animation-delay: 0.6s;
}


/* Vision & Mission - Premium Split Block */
.vision-mission-split-block {
    padding: 100px 0;
    background: linear-gradient(to bottom, #FAFCFE 0%, #F5F8FB 100%);
    position: relative;
}

.vision-mission-split-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0;
    max-width: 1300px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.vision-block,
.mission-block {
    padding: 80px 60px;
    position: relative;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.vision-block {
    background: linear-gradient(135deg, #F8FCFF 0%, #EFF6FB 100%);
    animation-delay: 0.2s;
}

.mission-block {
    background: linear-gradient(135deg, #FFF9F5 0%, #FFF5EF 100%);
    animation-delay: 0.4s;
}

.divider-line {
    width: 1px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        #D5E3F0 10%, 
        #D5E3F0 90%, 
        transparent 100%
    );
    position: relative;
}

.block-title {
    font-size: 2rem;
    font-weight: 300;
    color: #00205B;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.block-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #00205B 0%, #C9A961 100%);
}

.block-quote {
    font-size: 1.3rem;
    line-height: 2;
    color: #2c3e50;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.3px;
    position: relative;
    padding-left: 30px;
}

.block-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: #C9A961;
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-list li {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #2c3e50;
    font-weight: 300;
    letter-spacing: 0.3px;
    padding-left: 40px;
    position: relative;
}

.mission-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #C9A961;
    font-size: 2rem;
    line-height: 1;
    font-weight: 400;
}

/* Hover effects */
.vision-block:hover {
    background: linear-gradient(135deg, #F0F8FF 0%, #E8F2FA 100%);
}

.mission-block:hover {
    background: linear-gradient(135deg, #FFF6F0 0%, #FFEFEA 100%);
}


/* History in Saudi Arabia - Modern Timeline */
.history-timeline-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #FAFCFE 0%, #FFFFFF 100%);
    position: relative;
}

.timeline-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-top: -2rem;
    margin-bottom: 5rem;
}

.modern-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0 2rem 80px;
}

.timeline-track {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width:  2px;
    background: linear-gradient(to bottom, 
        transparent 0%,
        #C9A961 5%,
        #D4AF6A 50%,
        #C9A961 95%,
        transparent 100%
    );
    z-index: 0;
}

.timeline-entry {
    position: relative;
    padding: 2rem 0 2rem 60px;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInTimeline 0.6s ease forwards;
}

.timeline-entry:nth-child(2) { animation-delay: 0.1s; }
.timeline-entry:nth-child(3) { animation-delay: 0.2s; }
.timeline-entry:nth-child(4) { animation-delay: 0.3s; }
.timeline-entry:nth-child(5) { animation-delay: 0.4s; }
.timeline-entry:nth-child(6) { animation-delay: 0.5s; }
.timeline-entry:nth-child(7) { animation-delay: 0.6s; }
.timeline-entry:nth-child(8) { animation-delay: 0.7s; }

@keyframes slideInTimeline {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-entry:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -56px;
    top: 2.25rem;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #E8F4FF 0%, #D0E8FF 100%);
    border: 3px solid #4A9FE8;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(74, 159, 232, 0.1);
    transition: all 0.4s ease;
}

.timeline-entry:hover .timeline-dot {
    background: linear-gradient(135deg, #4A9FE8 0%, #2B7FCC 100%);
    border-color: #C9A961;
    box-shadow: 0 0 0 8px rgba(201,  169, 97, 0.15);
    transform: scale(1.3);
}

.timeline-year {
    font-size: 2rem;
    font-weight: 300;
    color: #00205B;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    position: relative;
}

.timeline-year::after {
    content: '—';
    margin-left: 15px;
    color: #C9A961;
    font-weight: 400;
}

.timeline-description {
    font-size: 1.2rem;
    color: #555;
    font-weight: 300;
    letter-spacing: 0.3px;
    line-height: 1.7;
    padding: 1.5rem 2rem;
    background: white;
    border-left: 3px solid transparent;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.timeline-entry:hover .timeline-description {
    border-left-color: #C9A961;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.1);
    transform: translateX(5px);
    background: linear-gradient(to right, #FFF9F0 0%, white 100%);
}

/* Decorative element */
.modern-timeline::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 15px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #C9A961 0%, #D4AF6A 100%);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
    z-index: 3;
}

.modern-timeline::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 15px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #4A9FE8 0%, #2B7FCC 100%);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(74, 159, 232, 0.3);
    z-index: 3;
}



/* Core Values - Modern Slim Strip */
.core-values-strip-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #00205B 0%, #003366 100%);
    position: relative;
    overflow: hidden;
}

.core-values-strip-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #C9A961 10%, 
        #D4AF6A 50%, 
        #C9A961 90%, 
        transparent 100%
    );
}

.core-values-strip-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #C9A961 10%, 
        #D4AF6A 50%, 
        #C9A961 90%, 
        transparent 100%
    );
}

.core-values-strip-section .section-title {
    color: white;
    margin-bottom: 4rem;
    font-size: 2rem;
    letter-spacing: 5px;
}

.core-values-strip-section .section-title::after {
    background: linear-gradient(90deg, 
        transparent 0%, 
        #C9A961 20%, 
        #D4AF6A 50%, 
        #C9A961 80%, 
        transparent 100%
    );
}

.values-strip-grid {
    display: grid;
    grid-template-columns: repeat(11, auto);
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

.value-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.value-strip-item:nth-child(1) { animation-delay: 0.1s; }
.value-strip-item:nth-child(3) { animation-delay: 0.2s; }
.value-strip-item:nth-child(5) { animation-delay: 0.3s; }
.value-strip-item:nth-child(7) { animation-delay: 0.4s; }
.value-strip-item:nth-child(9) { animation-delay: 0.5s; }
.value-strip-item:nth-child(11) { animation-delay: 0.6s; }

.value-strip-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #C9A961 0%, #D4AF6A 100%);
    transition: width 0.3s ease;
}

.value-strip-item:hover::before {
    width: 80%;
}

.value-strip-item:hover {
    transform: translateY(-8px);
}

.value-strip-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(201, 169, 97, 0.3);
    transition: all 0.3s ease;
}

.value-strip-item:hover .value-strip-icon {
    background: rgba(201, 169, 97, 0.2);
    border-color: #C9A961;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.3);
}

.value-strip-icon i {
    font-size: 20px;
    color: #C9A961;
    transition: all 0.3s ease;
}

.value-strip-item:hover .value-strip-icon i {
    color: #D4AF6A;
    transform: scale(1.1);
}

.value-strip-item h3 {
    font-size: 0.95rem;
    font-weight: 400;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.value-strip-item:hover h3 {
    color: #D4AF6A;
    letter-spacing: 3px;
}

.value-strip-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(201, 169, 97, 0.3) 20%, 
        rgba(201, 169, 97, 0.5) 50%, 
        rgba(201, 169, 97, 0.3) 80%, 
        transparent 100%
    );
    margin: 0 1rem;
}



/* CTA - Premium Closing Section */
.cta-premium-closing {
    padding: 120px 0;
    background: linear-gradient(to bottom, #FFFFFF 0%, #FAFCFE 100%);
    position: relative;
    overflow: hidden;
}

.cta-premium-closing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(201, 169, 97, 0.2) 10%, 
        rgba(201, 169, 97, 0.3) 50%, 
        rgba(201, 169, 97, 0.2) 90%, 
        transparent 100%
    );
}

.cta-premium-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
}

.cta-premium-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #00205B;
    letter-spacing: 2px;
    line-height: 1.5;
    margin-bottom: 3rem;
    position: relative;
    animation: fadeInUp 0.8s ease;
}

.cta-premium-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #C9A961 20%, 
        #D4AF6A 50%, 
        #C9A961 80%, 
        transparent 100%
    );
}

.cta-premium-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 50px;
    background: white;
    color: #00205B;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 2px solid #C9A961;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.15);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.cta-premium-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(201, 169, 97, 0.1), 
        transparent
    );
    transition: left 0.6s ease;
}

.cta-premium-button:hover::before {
    left: 100%;
}

.cta-premium-button:hover {
    background: linear-gradient(135deg, #C9A961 0%, #D4AF6A 100%);
    color: white;
    border-color: #C9A961;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.3);
}

.cta-premium-button i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.cta-premium-button:hover i {
    transform: translateX(5px);
}

/* Alternative: Blue Minimal Button Style */
.cta-premium-button.blue-minimal {
    background: white;
    color: #00205B;
    border: 2px solid #00205B;
    box-shadow: 0 4px 20px rgba(0, 32, 91, 0.1);
}

.cta-premium-button.blue-minimal::before {
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 32, 91, 0.05), 
        transparent
    );
}

.cta-premium-button.blue-minimal:hover {
    background: linear-gradient(135deg, #00205B 0%, #003d9e 100%);
    color: white;
    border-color: #00205B;
    box-shadow: 0 8px 30px rgba(0, 32, 91, 0.25);
}

/* Decorative elements */
.cta-premium-content::before,
.cta-premium-content::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.05;
    pointer-events: none;
}

.cta-premium-content::before {
    top: -30px;
    left: -30px;
    background: radial-gradient(circle, #C9A961 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.cta-premium-content::after {
    bottom: -30px;
    right: -30px;
    background: radial-gradient(circle, #00205B 0%, transparent 70%);
    animation: float 8s ease-in-out infinite reverse;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */

/* Large Tablets and Small Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-premium-title {
        font-size: 3. 5rem;
        letter-spacing: 8px;
    }

    .hero-premium-subtitle {
        font-size: 1.2rem;
    }

    /* Company Intro */
    .company-intro-grid {
        gap: 50px;
    }

    .image-wrapper img {
        height: 400px;
    }

    /* Profile Cards */
    .profile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Services */
    .services-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Strengths */
    .strengths-icon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Logo Wall */
    .logo-wall-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Core Values */
    .values-strip-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .value-strip-divider {
        display: none;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Tablets (max-width: 768px) */
@media (max-width:  768px) {
    .container {
        padding: 0 20px;
    }

    /* Hero Section */
    .hero-premium {
        min-height: 60vh;
        padding: 80px 20px 80px;
    }

    .hero-premium-title {
        font-size: 2.5rem;
        letter-spacing: 6px;
        margin-bottom: 1.5rem;
    }

    .hero-premium-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        margin-top: 2rem;
    }

    .hero-premium-button {
        padding: 15px 35px;
        font-size:  0.9rem;
    }

    /* Company Statement */
    .company-statement {
        max-width: 90%;
        font-size: 1rem;
        line-height: 1.8;
    }

    /* Company Intro */
    .company-intro-premium {
        padding: 80px 0;
    }

    .company-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .company-intro-text {
        padding: 20px 0;
    }

    .company-intro-title {
        font-size: 2rem;
        letter-spacing: 4px;
        margin-bottom: 2rem;
    }

    .company-intro-description p {
        font-size: 1rem;
    }

    .intro-para-1 {
        font-size:  1.15rem ! important;
    }

    .image-wrapper {
        padding: 15px;
    }

    .image-wrapper img {
        height: 300px;
    }

    /* Who We Are */
    .who-we-are-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .who-we-are-text h2 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .who-we-are-text p {
        font-size: 1rem;
    }

    .who-we-are-image {
        padding: 15px;
    }

    .who-we-are-image img {
        height: 300px;
    }

    /* Vision Mission Split */
    .vision-mission-split-block {
        padding: 60px 0;
    }

    .vision-mission-split-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .divider-line {
        height: 1px;
        width: 100%;
        background:  linear-gradient(to right, 
            transparent 0%, 
            #D5E3F0 10%, 
            #D5E3F0 90%, 
            transparent 100%
        );
    }

    .vision-block,
    .mission-block {
        padding: 50px 30px;
    }

    .block-title {
        font-size: 1.5rem;
        letter-spacing: 3px;
        margin-bottom: 2rem;
    }

    .block-quote {
        font-size: 1.1rem;
        padding-left: 25px;
    }

    .mission-list li {
        font-size: 1.1rem;
        padding-left: 30px;
    }

    /* Section Titles */
    .section-title {
        font-size:  2rem;
        letter-spacing:  2px;
        margin-bottom: 3rem;
    }

    /* Profile Cards */
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .profile-card {
        padding: 2.5rem 2rem;
    }

    /* Services Cards */
    .services-cards {
        grid-template-columns:  1fr;
        gap:  1.5rem;
    }

    /* Mission Vision Grid */
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Strengths */
    .our-strengths-premium-grid {
        padding: 60px 0;
    }

    .strengths-icon-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .strength-premium-card {
        padding: 2.5rem 2rem;
    }

    /* Certifications */
    .certification-luxury-section {
        padding: 80px 0;
    }

    .certification-luxury-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cert-luxury-card {
        padding: 2.5rem 2rem;
    }

    /* Logo Wall */
    .partners-clients-premium-section {
        padding: 80px 0;
    }

    .partners-subtitle {
        margin-bottom: 3rem;
    }

    .logo-wall-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    /* Timeline */
    .history-timeline-section {
        padding: 80px 0;
    }

    .timeline-subtitle {
        margin-bottom: 3rem;
    }

    .modern-timeline {
        padding-left: 60px;
    }

    .timeline-entry {
        padding: 1.5rem 0 1.5rem 50px;
    }

    .timeline-dot {
        left: -44px;
    }

    .timeline-year {
        font-size: 1.5rem;
    }

    .timeline-description {
        font-size: 1rem;
        padding:  1rem 1.5rem;
    }

    /* Core Values */
    .core-values-strip-section {
        padding: 60px 0;
    }

    .values-strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .value-strip-item {
        padding: 1.5rem 1.5rem;
    }

    .value-strip-icon {
        width: 45px;
        height: 45px;
    }

    .value-strip-icon i {
        font-size: 18px;
    }

    .value-strip-item h3 {
        font-size: 0.85rem;
    }

    /* CTA */
    .cta-premium-closing {
        padding: 80px 0;
    }

    .cta-premium-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .cta-premium-button {
        padding: 15px 40px;
    }

    /* Footer */
    .main-footer {
        padding: 60px 0 20px 0;
        margin-top: 80px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }


/* Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    body {
        font-size: 13px;
    }

    .container {
        padding: 0 15px;
    }

    /* Hero Section */
    .hero-premium {
        min-height:  50vh;
        padding:  60px 15px 60px;
    }

    .hero-premium-title {
        font-size: 1.2rem;
        letter-spacing: 2px;
        margin-bottom: 0.7rem;
    }

    .hero-premium-title::after {
        width: 60px;
    }

    .hero-premium-subtitle {
        font-size: 0.8rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .hero-premium-button {
        padding: 10px 18px;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    /* Company Statement */
    .company-statement-section {
        padding: 3rem 0;
    }

    .company-statement {
        max-width: 100%;
        font-size: 0.95rem;
        line-height:  1.7;
    }

    /* Company Intro */
    .company-intro-premium {
        padding:  60px 0;
    }

    .company-intro-title {
        font-size: 1rem;
        letter-spacing: 1.5px;
        margin-bottom: 1rem;
    }

    .company-intro-description {
        gap: 1.5rem;
    }

    .company-intro-description p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .intro-para-1 {
        font-size: 1.05rem !important;
    }

    .intro-para-2 {
        padding-left: 20px;
        border-left-width: 2px;
    }

    .image-wrapper {
        padding: 10px;
    }

    .image-wrapper img {
        height: 250px;
    }

    .image-wrapper::before {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
    }

    /* Vision Mission */
    .vision-mission-split-block {
        padding: 40px 0;
    }

    .vision-block,
    .mission-block {
        padding: 40px 20px;
    }

    .block-title {
        font-size: 1rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
        padding-bottom: 0.7rem;
    }

    .block-title::after {
        width: 50px;
    }

    .block-quote {
        font-size: 0.8rem;
        line-height: 1.4;
        padding-left: 10px;
    }

    .block-quote::before {
        font-size: 3rem;
        top: -5px;
    }

    .mission-list {
        gap: 1.5rem;
    }

    .mission-list li {
        font-size: 0.8rem;
        padding-left: 12px;
    }

    .mission-list li::before {
        font-size: 1.5rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 1rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .section-title::after {
        width: 50px;
    }

    /* Profile Cards */
    .company-profile-section {
        padding: 4rem 0;
    }

    .profile-card {
        padding: 2rem 1.5rem;
    }

    .profile-icon {
        width: 50px;
        height: 50px;
    }

    .profile-icon i {
        font-size: 20px;
    }

    .profile-card h3 {
        font-size: 1rem;
    }

    .profile-card p {
        font-size: 0.9rem;
    }

    /* Services */
    .what-we-do-section {
        padding: 4rem 0;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 24px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    /* Strengths */
    .our-strengths-premium-grid {
        padding: 60px 0;
    }

    .strength-premium-card {
        padding: 2rem 1.5rem;
    }

    .strength-premium-icon {
        width: 70px;
        height: 70px;
    }

    .strength-premium-icon i {
        font-size: 28px;
    }

    .strength-premium-card h3 {
        font-size: 0.8rem;
    }

    /* Certifications */
    .certification-luxury-section {
        padding: 60px 0;
    }

    .certification-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .cert-luxury-card {
        padding: 2rem 1.5rem;
    }

    .cert-icon {
        width: 70px;
        height: 70px;
    }

    .cert-icon i {
      font-size: 32px;
    }

    .cert-luxury-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    /* Logo Wall */
    .partners-clients-premium-section {
        padding: 60px 0;
    }

    .partners-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        padding: 0 5px;
    }

    .logo-wall-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Timeline */
    .history-timeline-section {
        padding: 60px 0;
    }

    .timeline-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .modern-timeline {
        padding-left: 50px;
    }

    .timeline-track {
        left: 18px;
    }

    .timeline-entry {
        padding:  1rem 0 1rem 40px;
        margin-bottom: 2rem;
    }

    .timeline-dot {
        width: 14px;
        height: 14px;
        left: -38px;
        top: 1.5rem;
        border-width: 2px;
    }

    .timeline-year {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .timeline-year::after {
        margin-left: 10px;
    }

    .timeline-description {
        font-size: 0.8rem;
        line-height: 1.3;
        padding: 0.7rem 0.7rem;
    }

    .modern-timeline::before,
    .modern-timeline::after {
        width: 16px;
        height: 16px;
        left: 10px;
    }

    /* Core Values */
    .core-values-strip-section {
        padding: 50px 0;
    }

    .core-values-strip-section .section-title {
        font-size: 1rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .values-strip-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-strip-item {
        padding: 1.25rem 1rem;
    }

    .value-strip-icon {
        width: 40px;
        height: 40px;
    }

    .value-strip-icon i {
        font-size: 16px;
    }

    .value-strip-item h3 {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    /* CTA */
    .cta-premium-closing {
        padding: 60px 0;
    }

    .cta-premium-content {
        padding: 3rem 1rem;
    }

    .cta-premium-title {
        font-size: 1rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .cta-premium-title::after {
        width: 60px;
    }

    .cta-premium-button {
        padding: 10px 18px;
        font-size: 0.8rem;
        letter-spacing: 1px;
        gap: 8px;
    }

    /* Footer */
    .main-footer {
        padding: 50px 0 15px 0;
        margin-top: 60px;
    }

    .footer-content {
        gap: 2rem;
        margin-bottom:  1.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-logo h3 {
        font-size: 1rem;
    }

    .footer-description {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon i {
        font-size: 0.9rem;
    }

    .footer-title {
        font-size: 0.8rem;
        margin-bottom: 0.7rem;
    }

    .footer-list {
        gap: 0.6rem;
    }

    .footer-list a {
        font-size: 0.8rem;
    }

    .contact-item {
        font-size: 0.8rem;
        gap: 0.5rem;
        margin-bottom: 0.7rem;
    }

    .contact-item i {
        font-size: 1rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        gap: 0.75rem;
    }

    .footer-bottom p,
    .footer-links-bottom {
        font-size: 0.7rem;
    }

    .footer-links-bottom {
        gap: 0.75rem;
    }
}

/* Extra Small Devices (max-width:  360px) */
@media (max-width: 360px) {
    .hero-premium-title {
        font-size:  1.5rem;
        letter-spacing: 3px;
    }

    .hero-premium-subtitle {
        font-size: 0.85rem;
    }

    .company-intro-title {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .block-title {
        font-size: 1.2rem;
    }

    .logo-wall-grid {
        grid-template-columns: 1fr;
    }

    .timeline-year {
        font-size: 1.2rem;
    }

    .cta-premium-title {
        font-size: 1.2rem;
    }
}

/* Landscape Mode for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-premium {
        min-height: 100vh;
        padding: 40px 20px;
    }

    .hero-premium-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-premium-subtitle {
        font-size: 0.9rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

/* ===== MOBILE PERFORMANCE: DISABLE ANIMATIONS ===== */
/* Disable animations on mobile devices for better performance */
@media (max-width: 768px) {
    /* Disable all CSS animations and transitions on mobile */
    .hero-premium-content,
    .hero-premium-title,
    .hero-premium-subtitle,
    .hero-premium-button,
    .hero-decorative-element,
    .company-intro-image,
    .company-intro-text,
    .vision-block,
    .mission-block,
    .strength-premium-card,
    .cert-luxury-card,
    .logo-wall-item,
    .value-strip-item,
    .timeline-entry,
    .service-card,
    .profile-card,
    .who-we-are-text,
    .who-we-are-image {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    /* Disable hover transform effects on mobile */
    .strength-premium-card:hover,
    .cert-luxury-card:hover,
    .logo-wall-item:hover,
    .value-strip-item:hover,
    .profile-card:hover,
    .service-card:hover {
        transform: none !important;
    }

    /* Disable floating animation on decorative elements */
    .hero-decorative-element,
    .hero-decorative-element::before {
        animation: none !important;
    }

    /* Remove animation delays */
    .strength-premium-card:nth-child(1),
    .strength-premium-card:nth-child(2),
    .strength-premium-card:nth-child(3),
    .strength-premium-card:nth-child(4),
    .strength-premium-card:nth-child(5),
    .strength-premium-card:nth-child(6),
    .cert-luxury-card:nth-child(1),
    .cert-luxury-card:nth-child(2),
    .cert-luxury-card:nth-child(3),
    .cert-luxury-card:nth-child(4),
    .logo-wall-item:nth-child(1),
    .logo-wall-item:nth-child(2),
    .logo-wall-item:nth-child(3),
    .logo-wall-item:nth-child(4),
    .logo-wall-item:nth-child(5),
    .logo-wall-item:nth-child(6),
    .logo-wall-item:nth-child(7),
    .logo-wall-item:nth-child(8),
    .logo-wall-item:nth-child(9),
    .logo-wall-item:nth-child(10),
    .logo-wall-item:nth-child(11),
    .logo-wall-item:nth-child(12),
    .value-strip-item:nth-child(1),
    .value-strip-item:nth-child(3),
    .value-strip-item:nth-child(5),
    .value-strip-item:nth-child(7),
    .value-strip-item:nth-child(9),
    .value-strip-item:nth-child(11),
    .timeline-entry:nth-child(2),
    .timeline-entry:nth-child(3),
    .timeline-entry:nth-child(4),
    .timeline-entry:nth-child(5),
    .timeline-entry:nth-child(6),
    .timeline-entry:nth-child(7),
    .timeline-entry:nth-child(8),
    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4) {
        animation-delay: 0s !important;
    }

    /* Disable bubble animations */
    .bubble,
    .bubble-1,
    .bubble-2,
    .bubble-3,
    .bubble-4,
    .bubble-5,
    .bubble-6 {
        animation: none !important;
    }
}

/* Respect user's reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
}