* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Import base styles from main stylesheet */
/* Top Header Bar */
.top-header {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    padding: 12px 0;
    font-size: 14px;
}

.top-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Main Navigation */
.main-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    border-top: #03bef7 3px solid;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 100px;
    height: 70px;
    padding: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.active {
    color: #4a90e2 !important;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: #4a90e2;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #4a90e2;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.dropdown-arrow::after {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
    opacity: 0.7;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.nav-toggle .bar {
    width: 28px;
    height: 3px;
    background: #357abd;
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}

.enquire-btn {
    background: linear-gradient(135deg, #28a745, #20c457);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.enquire-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

/* Services Hero Section */
.services-hero {
    position: relative;
    min-height: 500px;
    padding: 120px 0 80px 0;
    background: url('graduation.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(44, 65, 104, 0.55); /* semi-transparent gray overlay */
    z-index: 1;
}

.hero-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.element-3 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.element-4 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.element-5 {
    top: 70%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.services-hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-hero h1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}


.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.stat-item {
    background:rgba(42, 122, 168, 0.77);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    font-family: 'Times New Roman', Times, serif;
    font-size: 3rem;
    font-weight: 900;
    color:rgb(3, 247, 186);
    text-shadow: 0 2px 10px rgba(3, 247, 174, 0.6);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 5px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    color: #2c3e50;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #4a90e2, #03bef7);
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 400px) {
    .services-hero h1 { font-size: 3rem; font-weight: 600; }
    .services-hero p { font-size: 1.3rem; }
    .services-hero .hero-stats { flex-direction: column; }
    .services-hero .stat-item { margin-bottom: 20px; }
}

/* Overview Section */
.overview-section {
    padding: 100px 0;
    background:rgb(228, 240, 255);
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.overview-text h3 {
    font-size: 2rem;
    color: #357abd;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.overview-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.highlight-box {
    background: linear-gradient(135deg,rgb(165, 205, 253),rgb(219, 234, 248));
    border-left: 4px solid #4a90e2;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-box i {
    font-size: 1.5rem;
    color: #4a90e2;
}
.highlight-box p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.btn-secondary {
    background: white;
    color: #4a90e2;
    border: 2px solid #4a90e2;
}

.btn-secondary:hover {
    background: #4a90e2;
    color: white;
    transform: translateY(-3px);
}

.closing-text {
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
    margin-top: 30px;
}

.overview-visual {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.visual-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(50px);
}

.visual-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.visual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 15px;
}

.visual-card h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.visual-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Core Services Section */
.core-services-section {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #4a90e2, #03bef7);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #28a745;
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.service-icon {
    font-size: 3.5rem;
    color: #4a90e2;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card.featured .service-icon {
    color: white;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.service-card.featured h3 {
    color: white;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

/* Service Card Links */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.service-card-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-5px);
}

.service-card-link:focus {
    outline: 2px solid #4a90e2;
    outline-offset: 4px;
    border-radius: 18px;
}

/* Learn More Indicator */
.learn-more-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.service-card:hover .learn-more-indicator {
    opacity: 1;
    transform: translateY(0);
}

.learn-more-indicator i {
    font-size: 0.8rem;
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(4px);
    }
    60% {
        transform: translateY(2px);
    }
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .learn-more-indicator {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}


.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.feature-tag {
    background: #e3f0ff;
    color: #4a90e2;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-card.featured .feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Process Timeline Section */
.process-timeline-section {
    padding: 100px 0;
    background:rgb(228, 240, 255);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #4a90e2, #03bef7);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    margin: 0 40px;
}

.marker-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -30px;
    border-right-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -30px;
    border-left-color: white;
}

.timeline-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.timeline-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.phase-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8fbff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #e3f0ff;
    transform: translateX(5px);
}

.highlight-item i {
    color: #28a745;
    font-size: 1rem;
}

.highlight-item span {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

/* Packages Section */
.packages-section {
    padding: 100px 0;
    background: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.package-card {
    background: white;
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.package-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.package-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.package-card.popular {
    transform: scale(1.05);
    border: 3px solid #4a90e2;
}

.package-card.popular:hover {
    transform: scale(1.05) translateY(-20px);
}

.popular-badge {
    position: absolute;
    top: 25px;
    right: -35px;
    background: linear-gradient(135deg, #28a745, #20c457);
    color: white;
    padding: 8px 50px;
    font-size: 0.9rem;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 2;
}

.package-header {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.package-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.2rem;
    opacity: 0.8;
}

.amount {
    font-size: 3rem;
    font-weight: 900;
}

.period {
    font-size: 1.2rem;
    opacity: 0.8;
}

.package-features {
    padding: 40px 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    background: #f8fbff;
    padding-left: 10px;
}

.feature-item i {
    color: #28a745;
    font-size: 1.1rem;
    width: 20px;
}

.feature-item span {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
}

.package-btn1 {
    width: 100%;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-btn:hover {
    background: linear-gradient(135deg, #357abd, #2a5298);
    transform: translateY(-2px);
}

.payment-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.info-card {
    background: #f8fbff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #e3f0ff;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #4a90e2;
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 20px;
}

.info-card h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #4a90e2 0%, #2a5298 50%, #4a90e2 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-primary-large, .btn-secondary-large {
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-large {
    background: linear-gradient(135deg, #28a745, #20c457);
    color: white;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.btn-primary-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.5);
}

.btn-secondary-large {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary-large:hover {
    background: white;
    color: #4a90e2;
    transform: translateY(-5px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #e8f4f8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-text {
    font-size: 0.9rem;
    color: #e8f4f8;
    max-width: 600px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-marker {
        position: absolute;
        left: 0;
        margin: 0;
    }
    
    .timeline-content::before {
        left: -30px !important;
        right: auto !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
    }
}

@media (max-width: 768px) {
    .top-header {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        display: none;
        z-index: 1001;
    }
    
    .nav-menu.open {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        display: block;
        width: 100%;
        padding: 15px 30px;
        color: #23406e;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .enquire-btn {
        display: none;
    }
    
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .package-card.popular {
        transform: none;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 80px 0 60px 0;
    }
    
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .overview-text h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .marker-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .timeline-content {
        padding: 25px;
    }
    
    .timeline-content h3 {
        font-size: 1.4rem;
    }
    
    .phase-highlights {
        grid-template-columns: 1fr;
    }
    
    .package-card {
        margin: 0 10px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .btn-primary-large, .btn-secondary-large {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

/* Staggered animations for service cards */
.service-card:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* Staggered animations for package cards */
.package-card:nth-child(1) {
    transition-delay: 0.1s;
}

.package-card:nth-child(2) {
    transition-delay: 0.2s;
}

.package-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* Staggered animations for timeline items */
.timeline-item:nth-child(1) {
    transition-delay: 0.2s;
}

.timeline-item:nth-child(2) {
    transition-delay: 0.35s;
}

.timeline-item:nth-child(3) {
    transition-delay: 0.5s;
}

/* Staggered animations for visual cards */
.visual-card:nth-child(1) {
    transition-delay: 0.1s;
}

.visual-card:nth-child(2) {
    transition-delay: 0.2s;
}

.visual-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* Pulse animation for important elements */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Glow effect for buttons */
.btn-primary:hover,
.btn-primary-large:hover {
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.6);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: #4a90e2;
    color: white;
}

::-moz-selection {
    background: #4a90e2;
    color: white;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #357abd, #2a5298);
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus {
    outline: 2px solid #4a90e2;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .nav-toggle,
    .enquire-btn,
    .floating-element,
    .cta-section {
        display: none !important;
    }
    
    .services-hero {
        background: none !important;
        color: black !important;
    }
    
    .package-card,
    .service-card,
    .timeline-content {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-card,
    .package-card,
    .timeline-content {
        border: 2px solid #000;
    }
    
    .btn-primary,
    .btn-primary-large {
        background: #000;
        border: 2px solid #000;
    }
    
    .btn-secondary,
    .btn-secondary-large {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-element {
        animation: none;
    }
    
    .hero-background-animation {
        display: none;
    }
}


/* Additional utility classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.p-0 { padding: 0; }
.p-1 { padding: 10px; }
.p-2 { padding: 20px; }
.p-3 { padding: 30px; }
.p-4 { padding: 40px; }
.p-5 { padding: 50px; }

/* Visibility classes */
.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.hidden {
    display: none;
}

/* Flexbox utilities */
.d-flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

/* Grid utilities */
.d-grid {
    display: grid;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }
.gap-3 { gap: 30px; }
.gap-4 { gap: 40px; }
.gap-5 { gap: 50px; }

/* Color utilities */
.text-primary {
    color: #4a90e2;
}

.text-secondary {
    color: #666;
}

.text-success {
    color: #28a745;
}

.text-white {
    color: white;
}

.bg-primary {
    background: #4a90e2;
}

.bg-light {
    background: #f8fbff;
}

.bg-white {
    background: white;
}

/* Border utilities */
.border {
    border: 1px solid #ddd;
}

.border-primary {
    border: 1px solid #4a90e2;
}

.border-radius {
    border-radius: 8px;
}

.border-radius-lg {
    border-radius: 15px;
}

/* Shadow utilities */
.shadow-sm {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Position utilities */
.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.position-fixed {
    position: fixed;
}

/* Z-index utilities */
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-3 { z-index: 3; }
.z-1000 { z-index: 1000; }
.z-1001 { z-index: 1001; }
.z-1002 { z-index: 1002; }

/* Simple WhatsApp Button */
.simple-whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.simple-whatsapp-btn:hover {
    background: #20b954;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.simple-whatsapp-btn i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .simple-whatsapp-btn span {
        display: none;
    }
    
    .simple-whatsapp-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
    
    .simple-whatsapp-btn i {
        font-size: 24px;
    }
}