/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid #e2e8f0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: #215977;
    padding-left: 25px;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown .nav-link i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo img {
    height: 100px;
    width: auto;
    padding-top: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #215977;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #215977;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(4, 8, 19, 0.8) 0%, rgba(30, 67, 126, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fbbf24;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #215977;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #64748b;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    z-index: -1;
}

.stat:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #215977;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat p {
    color: #64748b;
    font-weight: 600;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #215977;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.service-card {
    background: white;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: none;
    height: 250px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

.service-card:hover::before {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(59, 130, 246, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(59, 130, 246, 0.8) 100%);
    z-index: 1;
}

.service-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 30px;
    color: white;
}

.service-icon {
    /* width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    /* border: 2px solid rgba(255, 255, 255, 0.3); */
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.know-more-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    margin-top: auto;
}

.know-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
    color: white;
}

.contact .section-header h2 {
    color: white;
}

.contact .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.contact-method i {
    font-size: 1.5rem;
    margin-right: 20px;
    color: #fbbf24;
}

.contact-method h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    opacity: 0.9;
}

.contact-method p {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-cta {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fbbf24;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.3);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

#formMessage {
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 15px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: #fbbf24;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #215977;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #fbbf24;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info p {
    color: #94a3b8;
    margin-bottom: 5px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fbbf24;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced Smooth Scrolling */
* {
    scroll-behavior: smooth;
}

body {
    scroll-behavior: smooth;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Page Hero Styles */
.page-hero {
    position: relative;
    height: 60vh;
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Company Story Section */
.company-story {
    padding: 100px 0;
    background: #f8fafc;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #215977;
    margin-bottom: 30px;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #64748b;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision Section */
.mission-vision {
    padding: 100px 0;
    background: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mv-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mv-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 20px;
}

.mv-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #f8fafc;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 30px;
}

.member-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 10px;
}

.member-title {
    color: #fbbf24;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    gap: 15px;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: #215977;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #fbbf24;
    transform: translateY(-2px);
}

/* Achievements Section */
.achievements {
    padding: 100px 0;
    background: white;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.achievement-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.achievement-icon i {
    font-size: 2rem;
    color: white;
}

.achievement-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 15px;
}

.achievement-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: #f8fafc;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 60px;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
    margin-right: 0;
    text-align: left;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #fbbf24;
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -70px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -70px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-image: linear-gradient(135deg, rgba(33, 89, 119, 0.8) 0%, rgba(70, 177, 235, 0.8) 100%), url('assets/about.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Services Page Styles */
.services-overview {
    padding: 80px 0;
    background: white;
}

.services-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.service-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #64748b;
    transition: all 0.3s ease;
    min-width: 150px;
}

.service-nav-item:hover,
.service-nav-item.active {
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
    color: white;
    transform: translateY(-5px);
}

.service-nav-item i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.service-nav-item span {
    font-weight: 600;
    text-align: center;
}

/* Service Detail Sections */
.service-detail {
    padding: 100px 0;
    background: #f8fafc;
}

.service-detail:nth-child(even) {
    background: white;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.service-intro h2 {
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
    color: #215977;
    margin-bottom: 20px;
}

.service-intro p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
}

.service-content {
    display: grid;
    gap: 60px;
}

.service-features h3,
.service-process h3,
.service-benefits h3,
.training-programs h3,
.training-delivery h3,
.compliance-areas h3,
.compliance-services h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    font-size: 2rem;
    color: #215977;
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 15px;
}

.feature-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 10px;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Benefits List */
.benefits-list {
    display: grid;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    color: #10b981;
    font-size: 1.2rem;
}

.benefit-item span {
    font-weight: 500;
    color: #215977;
}

/* Scheduled Training Program */
.scheduled-training {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f2936 0%, #286c91 100%);
    color: white;
}

.scheduled-training-content {
    max-width: 1000px;
    margin: 0 auto;
}

.training-announcement {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.announcement-header {
    text-align: center;
    margin-bottom: 40px;
}

.announcement-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.training-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 500;
}

.training-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.training-description {
    margin-top: 40px;
}

.training-details .registration-section {
    grid-column: 2;
    align-self: start;
}

.training-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-item i {
    font-size: 1.5rem;
    color: #46b1eb;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.info-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.time-ist {
    font-size: 0.8rem !important;
    opacity: 0.7 !important;
}

.training-description {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.training-description h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.training-description ul {
    list-style: none;
    padding: 0;
}

.training-description li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    opacity: 0.9;
}

.training-description li:last-child {
    border-bottom: none;
}

.training-description li:before {
    content: "✓";
    color: #46b1eb;
    font-weight: bold;
    margin-right: 10px;
}

.registration-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.registration-info {
    margin-bottom: 25px;
}

.registration-info p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.registration-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.register-btn, .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.register-btn {
    background: white;
    color: #215977;
    border-color: white;
}

.register-btn:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

.whatsapp-btn:hover {
    background: #128c7e;
    border-color: #128c7e;
    transform: translateY(-2px);
}

/* Responsive Design for Scheduled Training */
@media (max-width: 768px) {
    .training-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .training-details .registration-section {
        grid-column: 1;
    }
    
    .training-info {
        grid-template-columns: 1fr;
    }
    
    .announcement-header h2 {
        font-size: 2rem;
    }
    
    .registration-buttons {
        flex-direction: column;
    }
    
    .register-btn, .whatsapp-btn {
        justify-content: center;
    }
}

/* Training Programs */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.program-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.program-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.program-icon i {
    font-size: 1.5rem;
    color: white;
}

.program-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 15px;
}

.program-card ul {
    list-style: none;
    padding: 0;
}

.program-card li {
    padding: 5px 0;
    color: #64748b;
    position: relative;
    padding-left: 20px;
}

.program-card li::before {
    content: '•';
    color: #215977;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Delivery Options */
.delivery-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Training Delivery Methods - Flexbox */
.delivery-flex {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.delivery-flex .delivery-card {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.delivery-flex .delivery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.delivery-flex .delivery-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    flex-shrink: 0;
}

.delivery-flex .delivery-icon i {
    font-size: 2rem;
    color: white;
}

.delivery-flex .delivery-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 20px;
    text-align: center;
}

.delivery-flex .delivery-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
    flex-grow: 1;
}

.delivery-flex .delivery-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.delivery-flex .delivery-card li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 25px;
    border-bottom: 1px solid #f1f5f9;
}

.delivery-flex .delivery-card li:last-child {
    border-bottom: none;
}

.delivery-flex .delivery-card li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Responsive Design for Delivery Flex */
@media (max-width: 768px) {
    .delivery-flex {
        flex-direction: column;
        gap: 30px;
    }
    
    .delivery-flex .delivery-card {
        min-width: 100%;
        max-width: 100%;
    }
}

/* Circular Services - Flexbox */
.circulars-flex {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.circulars-flex .circular-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.circulars-flex .circular-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.circulars-flex .circular-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    flex-shrink: 0;
}

.circulars-flex .circular-icon i {
    font-size: 1.8rem;
    color: white;
}

.circulars-flex .circular-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 20px;
    text-align: center;
}

.circulars-flex .circular-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
    flex-grow: 1;
}

.circulars-flex .circular-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.circulars-flex .circular-card li {
    padding: 6px 0;
    color: #64748b;
    position: relative;
    padding-left: 20px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}

.circulars-flex .circular-card li:last-child {
    border-bottom: none;
}

.circulars-flex .circular-card li::before {
    content: '•';
    color: #215977;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 6px;
}

/* Delivery Format - Flexbox */
.format-flex {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.format-flex .format-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.format-flex .format-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.format-flex .format-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

.format-flex .format-icon i {
    font-size: 1.5rem;
    color: white;
}

.format-flex .format-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 15px;
}

.format-flex .format-card p {
    color: #64748b;
    line-height: 1.6;
    flex-grow: 1;
}

/* Responsive Design for Circulars and Format Flex */
@media (max-width: 768px) {
    .circulars-flex,
    .format-flex {
        flex-direction: column;
        gap: 25px;
    }
    
    .circulars-flex .circular-card,
    .format-flex .format-card {
        min-width: 100%;
        max-width: 100%;
    }
}

/* Ship Manuals - Flexbox */
.manuals-flex {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.manuals-flex .manual-category {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.manuals-flex .manual-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.manuals-flex .category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.manuals-flex .category-header i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.manuals-flex .category-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #215977;
    margin: 0;
}

.manuals-flex .manual-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.manuals-flex .manual-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.manuals-flex .manual-item:hover {
    background: #e0f2fe;
    border-color: #215977;
    transform: translateX(5px);
}

.manuals-flex .manual-item i {
    color: #215977;
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.manuals-flex .manual-item span {
    color: #64748b;
    font-weight: 500;
    font-size: 0.9rem;
}

/* SMS Services - Flexbox */
.sms-flex {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.sms-flex .sms-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.sms-flex .sms-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.sms-flex .sms-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    flex-shrink: 0;
}

.sms-flex .sms-icon i {
    font-size: 1.8rem;
    color: white;
}

.sms-flex .sms-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 20px;
    text-align: center;
}

.sms-flex .sms-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
    flex-grow: 1;
}

.sms-flex .sms-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sms-flex .sms-card li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 25px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}

.sms-flex .sms-card li:last-child {
    border-bottom: none;
}

.sms-flex .sms-card li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Responsive Design for Manuals and SMS Flex */
@media (max-width: 768px) {
    .manuals-flex,
    .sms-flex {
        flex-direction: column;
        gap: 25px;
    }
    
    .manuals-flex .manual-category,
    .sms-flex .sms-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    .manuals-flex .category-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Survey & Inspection Services - Flexbox */
.survey-flex {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.survey-flex .survey-category {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.survey-flex .survey-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.survey-flex .category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.survey-flex .category-header i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.survey-flex .category-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #215977;
    margin: 0;
}

.survey-flex .survey-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.survey-flex .survey-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.survey-flex .survey-item:hover {
    background: #e0f2fe;
    border-color: #215977;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.1);
}

.survey-flex .survey-item i {
    color: #215977;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.survey-flex .survey-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 8px;
    line-height: 1.3;
}

.survey-flex .survey-content p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Survey Flex */
@media (max-width: 768px) {
    .survey-flex {
        flex-direction: column;
        gap: 25px;
    }
    
    .survey-flex .survey-category {
        min-width: 100%;
        max-width: 100%;
    }
    
    .survey-flex .category-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .survey-flex .survey-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .survey-flex .survey-item i {
        margin-top: 0;
    }
}

/* Booking Services - Flexbox */
.booking-flex {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.booking-flex .booking-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.booking-flex .booking-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.booking-flex .booking-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    flex-shrink: 0;
}

.booking-flex .booking-icon i {
    font-size: 1.8rem;
    color: white;
}

.booking-flex .booking-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 20px;
    text-align: center;
}

.booking-flex .booking-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
    flex-grow: 1;
}

.booking-flex .booking-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.booking-flex .booking-card li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 25px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}

.booking-flex .booking-card li:last-child {
    border-bottom: none;
}

.booking-flex .booking-card li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Process Steps - Flexbox */
.process-flex {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.process-flex .process-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.process-flex .process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.process-flex .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.process-flex .step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 15px;
}

.process-flex .step-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Radio Services - Flexbox */
.radio-flex {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.radio-flex .radio-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.radio-flex .radio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.radio-flex .radio-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    flex-shrink: 0;
}

.radio-flex .radio-icon i {
    font-size: 1.8rem;
    color: white;
}

.radio-flex .radio-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 20px;
    text-align: center;
}

.radio-flex .radio-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
    flex-grow: 1;
}

.radio-flex .radio-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.radio-flex .radio-card li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 25px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}

.radio-flex .radio-card li:last-child {
    border-bottom: none;
}

.radio-flex .radio-card li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

/* PSC Services - Flexbox */
.psc-flex {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.psc-flex .psc-card {
    flex: 1;
    min-width: 350px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.psc-flex .psc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.psc-flex .psc-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    flex-shrink: 0;
}

.psc-flex .psc-icon i {
    font-size: 2rem;
    color: white;
}

.psc-flex .psc-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 20px;
    text-align: center;
}

.psc-flex .psc-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
    flex-grow: 1;
}

.psc-flex .psc-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.psc-flex .psc-card li {
    padding: 10px 0;
    color: #64748b;
    position: relative;
    padding-left: 25px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}

.psc-flex .psc-card li:last-child {
    border-bottom: none;
}

.psc-flex .psc-card li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 10px;
}

/* Benefits Section - Flexbox */
.benefits-flex {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.benefits-flex .benefit-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.benefits-flex .benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefits-flex .benefit-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.benefits-flex .benefit-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 15px;
}

.benefits-flex .benefit-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* QHSE Services - Flexbox */
.qhse-flex {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.qhse-flex .qhse-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.qhse-flex .qhse-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.qhse-flex .qhse-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    flex-shrink: 0;
}

.qhse-flex .qhse-icon i {
    font-size: 1.8rem;
    color: white;
}

.qhse-flex .qhse-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 20px;
    text-align: center;
}

.qhse-flex .qhse-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
    flex-grow: 1;
}

.qhse-flex .qhse-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qhse-flex .qhse-card li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 25px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}

.qhse-flex .qhse-card li:last-child {
    border-bottom: none;
}

.qhse-flex .qhse-card li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Flag Services - Flexbox */
.flag-flex {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.flag-flex .flag-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.flag-flex .flag-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.flag-flex .flag-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    flex-shrink: 0;
}

.flag-flex .flag-icon i {
    font-size: 1.8rem;
    color: white;
}

.flag-flex .flag-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 20px;
    text-align: center;
}

.flag-flex .flag-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
    flex-grow: 1;
}

.flag-flex .flag-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.flag-flex .flag-card li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 25px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}

.flag-flex .flag-card li:last-child {
    border-bottom: none;
}

.flag-flex .flag-card li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Flag States - Flexbox */
.states-flex {
    display: flex;
    gap: 2px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.states-flex .state-item {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 10px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.states-flex .state-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.states-flex .state-item h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #215977;
    margin: 0;
    line-height: 1.2;
}

.states-flex .state-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Classification Services - Flexbox */
.classification-flex {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.classification-flex .classification-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.classification-flex .classification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.classification-flex .classification-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    flex-shrink: 0;
}

.classification-flex .classification-icon i {
    font-size: 1.8rem;
    color: white;
}

.classification-flex .classification-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 20px;
    text-align: center;
}

.classification-flex .classification-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
    flex-grow: 1;
}

.classification-flex .classification-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.classification-flex .classification-card li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 25px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}

.classification-flex .classification-card li:last-child {
    border-bottom: none;
}

.classification-flex .classification-card li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Classification Societies - Flexbox */
.societies-flex {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.societies-flex .society-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.societies-flex .society-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.societies-flex .society-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.societies-flex .society-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 15px;
}

.societies-flex .society-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Insurance Services - Flexbox */
.insurance-flex {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.insurance-flex .insurance-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.insurance-flex .insurance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.insurance-flex .insurance-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    flex-shrink: 0;
}

.insurance-flex .insurance-icon i {
    font-size: 1.8rem;
    color: white;
}

.insurance-flex .insurance-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 20px;
    text-align: center;
}

.insurance-flex .insurance-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
    flex-grow: 1;
}

.insurance-flex .insurance-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.insurance-flex .insurance-card li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 25px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}

.insurance-flex .insurance-card li:last-child {
    border-bottom: none;
}

.insurance-flex .insurance-card li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Insurance Types - Flexbox */
.types-flex {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.types-flex .type-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.types-flex .type-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.types-flex .type-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.types-flex .type-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 15px;
}

.types-flex .type-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for New Service Pages */
@media (max-width: 768px) {
    .booking-flex,
    .radio-flex,
    .psc-flex,
    .qhse-flex,
    .flag-flex,
    .classification-flex,
    .insurance-flex,
    .benefits-flex,
    .process-flex,
    .societies-flex,
    .types-flex {
        flex-direction: column;
        gap: 25px;
    }
    
    .booking-flex .booking-card,
    .radio-flex .radio-card,
    .psc-flex .psc-card,
    .qhse-flex .qhse-card,
    .flag-flex .flag-card,
    .classification-flex .classification-card,
    .insurance-flex .insurance-card,
    .benefits-flex .benefit-item,
    .process-flex .process-step,
    .societies-flex .society-item,
    .types-flex .type-item {
        min-width: 100%;
        max-width: 100%;
    }
    
    /* Flag states - keep flexbox row on mobile */
    .states-flex {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .states-flex .state-item {
        min-width: 150px;
        max-width: 200px;
        padding: 10px 5px;
    }
    
    .states-flex .state-item h3 {
        font-size: 0.8rem;
    }
}

.delivery-option {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.delivery-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.delivery-option i {
    font-size: 2.5rem;
    color: #215977;
    margin-bottom: 20px;
}

.delivery-option h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 15px;
}

.delivery-option p {
    color: #64748b;
    line-height: 1.6;
}

/* Compliance Areas */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.compliance-area {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.compliance-area:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.compliance-area h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.compliance-area h4 i {
    color: #fbbf24;
}

.compliance-area p {
    color: #64748b;
    line-height: 1.6;
}

/* Services List */
.services-list {
    display: grid;
    gap: 25px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-item .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-item .service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 10px;
}

.service-details p {
    color: #64748b;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background: #f8fafc;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2px;
    margin-top: 60px;
}

.reason-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.reason-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #215977 0%, #46b1eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.reason-icon i {
    font-size: 2rem;
    color: white;
}

.reason-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #215977;
    margin-bottom: 15px;
}

.reason-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.8rem;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -70px;
    }
    
    .services-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .service-nav-item {
        min-width: 200px;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-options {
        grid-template-columns: 1fr;
    }
    
    .compliance-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn:hover::before {
    opacity: 1;
}

.whatsapp-btn i {
    font-size: 1.8rem;
    color: white;
    z-index: 1;
    position: relative;
}

.whatsapp-btn:hover i {
    animation: pulse 0.6s ease-in-out;
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Pulse animation for icon */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-btn i {
        font-size: 1.5rem;
    }
}

/* H2 font size override for all pages except home page */
/* Pages with .not-home class on body */
body.not-home .section-header h2,
body.not-home .story-text h2,
body.not-home .service-intro h2,
body.not-home .announcement-header h2,
body.not-home .cta-content h2,
body.not-home .about-text h2 {
    font-size: 1.8rem;
} 