:root {
    --primary: #1a4f8b;
    --secondary: #f8f9fa;
    --accent: #ff6b00;
    --dark: #2d3e50;
    --light: #ffffff;
    --success: #28a745;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #555;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}



h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}

.spinner {
    width: 70px;
    height: 70px;
    position: relative;
}

.spinner:before,
.spinner:after {
    content: '';
    border-radius: 50%;
    position: absolute;
    inset: 0;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.3) inset;
}

.spinner:after {
    box-shadow: 0 2px 0 var(--primary) inset;
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    margin-top: 20px;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 1px;
}

/* Scroll to top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.scroll-to-top:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

/* Navigation */
.navbar {
    padding: 18px 0;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 28px;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    color: var(--accent);
    margin-right: 8px;
    font-size: 32px;
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
    margin: 0 12px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
}

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

.navbar-nav .nav-link:hover {
    color: var(--primary);
}

.navbar-nav .nav-item .btn-primary {
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    margin-left: 15px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/herobghome.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 180px 0 120px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--light), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.8rem;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 15px;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
}

.hero-buttons .btn-primary:hover {
    background: #e55c00;
    border-color: #e55c00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hero-buttons .btn-outline-light:hover {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--light);
}

.stat-box {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    background: white;
    height: 100%;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 79, 139, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.stat-title {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0;
}

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

.about-content {
    position: relative;
}

/* Scroll-triggered animations */
.scroll-animation {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animation.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    transition: all 0.4s ease;
}

.about-img:hover {
    transform: rotate(0) scale(1.02);
}

.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--accent);
    color: white;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.experience-years {
    font-size: 2.5rem;
    line-height: 1;
}

.experience-text {
    font-size: 1rem;
    text-transform: uppercase;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.feature-list .icon {
    background: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 14px;
}

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

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

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
}

.section-title p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #777;
}

.service-box {
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    background: white;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
    text-align: center;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--accent);
}

.service-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, rgba(26, 79, 139, 0.1), transparent);
    transition: all 0.4s ease;
    z-index: 0;
}

.service-box:hover:before {
    height: 100%;
}

.service-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-box:hover .service-icon {
    color: var(--accent);
    transform: scale(1.1);
}

.service-box h4 {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-box p {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(26, 79, 139, 0.1);
}

.service-link:hover {
    color: white;
    background: var(--accent);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.service-link i {
    margin-left: 10px;
    transition: all 0.4s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f9fafb, #fff);
}

.process-step {
    text-align: center;
    padding: 20px;
    position: relative;height: auto !important;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% 100%;
    animation: gradient-flow 3s ease-in-out infinite;
}

.process-step:after {
    content: '';
    position: absolute;
    top: 40px;
    right: -60px;
    width: 60px;
    height: 2px;
    background: var(--primary);
    z-index: 1;
}

.process-step:last-child:after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(26, 79, 139, 0.2);
}

.process-content h4 {
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonial-card {
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 20px;
    background: white;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-card:before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(26, 79, 139, 0.1);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-img {
  
    margin-bottom: 15px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary);
}

.testimonial-author-info h5 {
    margin-bottom: 5px;
}

.testimonial-author-info p {
    color: #777;
    margin-bottom: 0;
}

.rating {
    color: #ffc107;
    margin-top: 5px;
}

/* Consultation Section */
.consultation-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/consultationbg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.consultation-section h2 {
    color: white;
}

.consultation-section .section-title h2:after {
    background: var(--accent);
}

.consultation-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.consultation-form h3 {
    color: var(--dark);
    margin-bottom: 25px;
    text-align: center;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: #f9fafb;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.blog-title:hover {
    color: var(--accent);
}

.blog-excerpt {
    color: #777;
    margin-bottom: 20px;
}

.blog-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s ease;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(26, 79, 139, 0.1);
}

.blog-link:hover {
    color: white;
    background: var(--accent);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.blog-link i {
    margin-left: 10px;
    transition: all 0.4s ease;
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-info-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.contact-info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 79, 139, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.contact-info-box:hover .contact-icon {
    background: var(--primary);
    color: white;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--accent));
}

footer h5 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

footer h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

footer p {
    color: rgba(255, 255, 255, 0.7);
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    border-radius: 30px;
    padding: 12px 20px;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 79, 139, 0.3);
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.stat-box:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.footer-newsletter .btn-primary {
    border-radius: 30px;
    padding: 12px 25px;
    margin-top: 15px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 50px;
    text-align: center;
}

/* Form Styles */
.form-control {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(26, 79, 139, 0.25);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0d3a6a;
    border-color: #0d3a6a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Animation Classes */
.animate-fadeIn {
    animation: fadeIn 1s ease;
}

.animate-fadeInUp {
    animation: fadeInUp 1s ease;
}

.animate-fadeInLeft {
    animation: fadeInLeft 1s ease;
}

.animate-fadeInRight {
    animation: fadeInRight 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

/* Section Padding */
.section-padding {
    padding: 100px 0;
}

.navbar-nav .ms-lg-3 {
    position: fixed;
    right: 20px;
    top: 103px;
}



/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .process-step:after {
        display: none;
    }

    .navbar-nav .nav-item .btn-primary {
        margin-left: 0;
        margin-top: 15px;
    }

    .stat-box {
        padding: 10px !important;
    }

    .stat-box h4 {
        font-size: 20px !important;
    }
    .testimonial-card h5{font-size: 1.0rem !important;}

}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

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

    .section-padding {
        padding: 70px 0;
    }

    .experience-badge {
        position: relative;
        top: 0;
        right: 0;
        margin: 0 auto 30px;
        width: 120px;
        height: 120px;
    }
      .testimonial-card h5{font-size: 1.0rem !important;}
}

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/herobghome.jpeg');
    background-size: cover;
    background-position: center;
    padding: 180px 0 120px;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--light), transparent);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3.8rem;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-hero p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    max-width: 600px;
}

/* About Company Section */
.about-company {
    padding: 100px 0;
    background: #f9fafb;
}

.about-content {
    position: relative;
}

.about-img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    transition: all 0.4s ease;
}

.about-img:hover {
    transform: rotate(0) scale(1.02);
}

.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--accent);
    color: white;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.experience-years {
    font-size: 2.5rem;
    line-height: 1;
}

.experience-text {
    font-size: 1rem;
    text-transform: uppercase;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.feature-list .icon {
    background: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 14px;
}

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

.mv-card {
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    background: white;
    height: 100%;
    text-align: center;
    border-bottom: 4px solid transparent;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--accent);
}

.mv-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
}

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

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

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
}

.section-title p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #777;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    height: 580px;
}

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

.team-img {
    height: 300px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-member:hover .team-img img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    margin-bottom: 5px;
}

.team-info .position {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.team-social {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(26, 79, 139, 0.1);
    color: var(--primary);
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: white;
}

.value-box {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    background: white;
    height: 100%;
    margin-bottom: 30px;
}

.value-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(26, 79, 139, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.value-box:hover .value-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/consultationbg.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 30px;
}

/* Blog Detail Hero */
.blog-detail-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/blogbg.jpeg');
    background-size: cover;
    background-position: center;
    padding: 150px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-detail-hero:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--light), transparent);
    z-index: 1;
}

.blog-detail-hero-content {
    position: relative;
    z-index: 2;
}

.blog-detail-hero h1 {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-detail-meta div {
    margin-right: 25px;
    display: flex;
    align-items: center;
}

.blog-detail-meta i {
    margin-right: 8px;
    color: var(--accent);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Blog Content */
.blog-detail-content {
    padding: 80px 0;
    background: #f9fafb;
}

.blog-content-main {
    background: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.blog-featured-img {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
}

.blog-featured-img img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary);
}

.blog-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark);
}

.blog-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.blog-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.blog-highlight {
    background: rgba(26, 79, 139, 0.1);
    border-left: 4px solid var(--primary);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

.blog-highlight p {
    margin-bottom: 0;
    font-style: italic;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.blog-tags span {
    margin-right: 10px;
    margin-bottom: 10px;
    background: rgba(26, 79, 139, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.blog-share {
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.blog-share span {
    margin-right: 15px;
    font-weight: 600;
}

.share-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(26, 79, 139, 0.1);
    color: var(--primary);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.share-icons a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Author Bio */
.author-bio {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
}

.author-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 25px;
    flex-shrink: 0;
}

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

.author-info h4 {
    margin-bottom: 10px;
}

.author-info p {
    margin-bottom: 15px;
    color: #777;
}

.author-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(26, 79, 139, 0.1);
    color: var(--primary);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background: var(--primary);
    color: white;
}

/* Related Posts */
.related-posts {
    padding: 80px 0;
    background: white;
}

.related-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    height: 100%;
}

.related-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.related-post-img {
    height: 200px;
    overflow: hidden;
}

.related-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.related-post-card:hover .related-post-img img {
    transform: scale(1.1);
}

.related-post-content {
    padding: 25px;
}

.related-post-date {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.related-post-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.related-post-title:hover {
    color: var(--accent);
}

.related-post-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s ease;
}

.related-post-link:hover {
    color: var(--accent);
    transform: translateX(10px);
}

.related-post-link i {
    margin-left: 10px;
    transition: all 0.4s ease;
}

.related-post-link:hover i {
    transform: translateX(5px);
}

/* Comments Section */
.comments-section {
    padding: 80px 0;
    background: #f9fafb;
}

.comments-title {
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.comments-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.comment {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-meta h5 {
    margin-bottom: 5px;
}

.comment-date {
    color: #777;
    font-size: 0.9rem;
}

.comment-reply {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.comment-reply:hover {
    color: var(--accent);
}

.comment-reply i {
    margin-right: 5px;
}

.comment-reply-section {
    margin-left: 80px;
    margin-top: 30px;
}

/* Comment Form */
.comment-form {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.comment-form h3 {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.comment-form h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.form-control {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(26, 79, 139, 0.25);
}

textarea.form-control {
    min-height: 150px;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0d3a6a;
    border-color: #0d3a6a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent);
    position: relative;
}

.sidebar-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary);
}

/* Search Widget */
.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 30px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.search-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(26, 79, 139, 0.25);
}

.search-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-form button:hover {
    background: var(--accent);
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.categories-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.categories-list a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.categories-list a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.categories-list a i {
    margin-right: 10px;
    color: var(--primary);
}

.categories-list span {
    background: rgba(26, 79, 139, 0.1);
    color: var(--primary);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Recent Posts Widget */
.recent-post {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.recent-post:last-child {
    margin-bottom: 0;
}

.recent-post-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.recent-post-content h5 a {
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.recent-post-content h5 a:hover {
    color: var(--accent);
}

.recent-post-content span {
    font-size: 0.8rem;
    color: #777;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: rgba(26, 79, 139, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tag:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Newsletter Widget */
.newsletter-form input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 30px;
    border: 1px solid #eee;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(26, 79, 139, 0.25);
}

.newsletter-form button {
    width: 100%;
    padding: 12px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent);
    transform: translateY(-3px);
}



.cta-section h2 {
    color: white;
    margin-bottom: 30px;
}

/* Hero Section */
.blog-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/blogbg.jpeg');
    background-size: cover;
    background-position: center;
    padding: 180px 0 120px;
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-hero:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--light), transparent);
    z-index: 1;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
}

.blog-hero h1 {
    font-size: 3.8rem;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.blog-hero p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    max-width: 600px;
}

/* Blog Content */
/* .blog-content {
    padding: 100px 0;
    background: #f9fafb;
} */

/* Blog Posts */
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;

}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-img {
    height: 250px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content-card {
    padding: 25px;
}

.blog-date {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.blog-title:hover {
    color: var(--accent);
}

.blog-excerpt {
    color: #777;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #777;
}

.blog-meta div {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary);
}

.blog-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s ease;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(26, 79, 139, 0.1);
}

.blog-link:hover {
    color: white;
    background: var(--accent);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.blog-link i {
    margin-left: 10px;
    transition: all 0.4s ease;
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent);
    position: relative;
}

.sidebar-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary);
}

/* Search Widget */
.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 30px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.search-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(26, 79, 139, 0.25);
}

.search-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-form button:hover {
    background: var(--accent);
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.categories-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.categories-list a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.categories-list a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.categories-list a i {
    margin-right: 10px;
    color: var(--primary);
}

.categories-list span {
    background: rgba(26, 79, 139, 0.1);
    color: var(--primary);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Recent Posts Widget */
.recent-post {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.recent-post:last-child {
    margin-bottom: 0;
}

.recent-post-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.recent-post-content h5 a {
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.recent-post-content h5 a:hover {
    color: var(--accent);
}

.recent-post-content span {
    font-size: 0.8rem;
    color: #777;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: rgba(26, 79, 139, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tag:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Newsletter Widget */
.newsletter-form input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 30px;
    border: 1px solid #eee;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(26, 79, 139, 0.25);
}

.newsletter-form button {
    width: 100%;
    padding: 12px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* Pagination */
.blog-pagination {
    margin-top: 50px;
}

.page-link {
    padding: 12px 20px;
    border: none;
    color: var(--dark);
    font-weight: 600;
    border-radius: 10px !important;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--primary);
    color: white;
}

.page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
}



.cta-section h2 {
    color: white;
    margin-bottom: 30px;
}

/* Hero Section */
.pr-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/blogbg.jpeg');
    background-size: cover;
    background-position: center;
    padding: 180px 0 120px;
    color: white;
    position: relative;
    overflow: hidden;
}

.pr-hero:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--light), transparent);
    z-index: 1;
}

.pr-hero-content {
    position: relative;
    z-index: 2;
}

.pr-hero h1 {
    font-size: 3.8rem;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.pr-hero p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    max-width: 600px;
}

/* PR Intro Section */
.pr-intro {
    padding: 100px 0;
    background: #f9fafb;
}

/* Programs Section */
.programs-section {
    padding: 100px 0;
    background: white;
}

.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.program-img {
    height: 200px;
    overflow: hidden;
}

.program-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.program-card:hover .program-img img {
    transform: scale(1.1);
}

.program-info {
    padding: 25px;
}

.program-info h4 {
    margin-bottom: 15px;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.program-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.program-features li:before {
    content: '•';
    color: var(--accent);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 10px;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: #f9fafb;
}

.benefit-box {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    background: white;
    height: 100%;
    margin-bottom: 30px;
}

.benefit-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(26, 79, 139, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.benefit-box:hover .benefit-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: white;
}

.process-step {
    text-align: center;
    padding: 20px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 315px;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(26, 79, 139, 0.2);
}

.process-content h4 {
    margin-bottom: 15px;
}

/* Requirements Section */
.requirements-section {
    padding: 100px 0;
    background: #f9fafb;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.requirements-list .icon {
    background: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 14px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonial-card {
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 20px;
    background: white;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-card:before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(26, 79, 139, 0.1);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary);
}

.testimonial-author-info h5 {
    margin-bottom: 5px;
}

.testimonial-author-info p {
    color: #777;
    margin-bottom: 0;
}

.rating {
    color: #ffc107;
    margin-top: 5px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f9fafb;
}

.accordion-item {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    padding: 20px;
    font-weight: 600;
    background: white;
    color: var(--dark);
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: white;
}

.accordion-button:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed):after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/cta.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 30px;
}

/* Hero Section */
.family-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1541557435984-1c79685a082b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 180px 0 120px;
    color: white;
    position: relative;
    overflow: hidden;
}

.family-hero:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--light), transparent);
    z-index: 1;
}

.family-hero-content {
    position: relative;
    z-index: 2;
}

.family-hero h1 {
    font-size: 3.8rem;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.family-hero p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    max-width: 600px;
}

/* Family Sponsorship Intro Section */
.family-intro {
    padding: 100px 0;
    background: #f9fafb;
}

/* Programs Section */
.programs-section {
    padding: 100px 0;
    background: white;
}

.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.program-img {
    height: 200px;
    overflow: hidden;
}

.program-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.program-card:hover .program-img img {
    transform: scale(1.1);
}

.program-info {
    padding: 25px;
}

.program-info h4 {
    margin-bottom: 15px;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.program-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.program-features li:before {
    content: '•';
    color: var(--accent);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 10px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #f9fafb;
}

.process-step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(26, 79, 139, 0.2);
}

.process-content h4 {
    margin-bottom: 15px;
}

/* Requirements Section */
.requirements-section {
    padding: 100px 0;
    background: white;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.requirements-list .icon {
    background: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 14px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #f9fafb;
}

.testimonial-card {
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 20px;
    background: white;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-card:before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(26, 79, 139, 0.1);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary);
}

.testimonial-author-info h5 {
    margin-bottom: 5px;
}

.testimonial-author-info p {
    color: #777;
    margin-bottom: 0;
}

.rating {
    color: #ffc107;
    margin-top: 5px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.accordion-item {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    padding: 20px;
    font-weight: 600;
    background: white;
    color: var(--dark);
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: white;
}

.accordion-button:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed):after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1541557435984-1c79685a082b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 30px;
}

/* Hero Section */
.student-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/121143.jpg');
    background-size: cover;
    background-position: center;
    padding: 180px 0 120px;
    color: white;
    position: relative;
    overflow: hidden;
}

.student-hero:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--light), transparent);
    z-index: 1;
}

.student-hero-content {
    position: relative;
    z-index: 2;
}

.student-hero h1 {
    font-size: 3.8rem;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.student-hero p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    max-width: 600px;
}

/* Student Visa Intro Section */
.student-intro {
    padding: 100px 0;
    background: #f9fafb;
}

/* Countries Section */
.countries-section {
    padding: 100px 0;
    background: white;
}

.country-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    height: auto;
}

.country-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.country-img {
    height: 200px;
    overflow: hidden;
}

.country-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.country-card:hover .country-img img {
    transform: scale(1.1);
}

.country-info {
    padding: 25px;
}

.country-info h4 {
    margin-bottom: 15px;
}

.visa-types {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.visa-types li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.visa-types li:before {
    content: '•';
    color: var(--accent);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 10px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #f9fafb;
}

.process-step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(26, 79, 139, 0.2);
}

.process-content h4 {
    margin-bottom: 15px;
}

/* Requirements Section */
.requirements-section {
    padding: 100px 0;
    background: white;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.requirements-list .icon {
    background: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 14px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #f9fafb;
}

.testimonial-card {
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 20px;
    background: white;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-card:before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(26, 79, 139, 0.1);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary);
}

.testimonial-author-info h5 {
    margin-bottom: 5px;
}

.testimonial-author-info p {
    color: #777;
    margin-bottom: 0;
}

.rating {
    color: #ffc107;
    margin-top: 5px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.accordion-item {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    padding: 20px;
    font-weight: 600;
    background: white;
    color: var(--dark);
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: white;
}

.accordion-button:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed):after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/blogbg.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 30px;
}

/* Terms Hero Section */
.terms-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/privacybg.jpeg');
    background-size: cover;
    background-position: center;
    padding: 150px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.terms-hero:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--light), transparent);
    z-index: 1;
}

.terms-hero-content {
    position: relative;
    z-index: 2;
}

.terms-hero h1 {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Terms Content */
.terms-content {
    padding: 80px 0;
    background: #f9fafb;
}

.terms-container {
    background: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.terms-section {
    margin-bottom: 50px;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h2 {
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent);
    position: relative;
}

.terms-section h2:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary);
}

.terms-section h3 {
    color: var(--dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.terms-section p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.terms-section ul,
.terms-section ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.terms-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.terms-highlight {
    background: rgba(26, 79, 139, 0.1);
    border-left: 4px solid var(--primary);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

.terms-highlight p {
    margin-bottom: 0;
    font-style: italic;
}

.update-info {
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid var(--accent);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

.update-info p {
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
}

.update-info i {
    color: var(--accent);
    margin-right: 10px;
    margin-top: 5px;
}

/* Table of Contents */
.toc-sidebar {
    position: sticky;
    top: 100px;
}

.toc-widget {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.toc-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent);
    position: relative;
}

.toc-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.toc-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.toc-list a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.toc-list a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.toc-list a i {
    margin-right: 10px;
    color: var(--primary);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-info-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.contact-info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 79, 139, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.contact-info-box:hover .contact-icon {
    background: var(--primary);
    color: white;
}

/* Hero Section */
.work-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/herobg.jpeg');
    background-size: cover;
    background-position: center;
    padding: 180px 0 120px;
    color: white;
    position: relative;
    overflow: hidden;
}

.work-hero:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--light), transparent);
    z-index: 1;
}

.work-hero-content {
    position: relative;
    z-index: 2;
}

.work-hero h1 {
    font-size: 3.8rem;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.work-hero p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    max-width: 600px;
}

/* Work Visa Intro Section */
.work-intro {
    padding: 100px 0;
    background: #f9fafb;
}

/* Countries Section */
.countries-section {
    padding: 100px 0;
    background: white;
}

.country-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;

}

.country-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.country-img {
    height: 200px;
    overflow: hidden;
}

.country-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.country-card:hover .country-img img {
    transform: scale(1.1);
}

.country-info {
    padding: 25px;
}

.country-info h4 {
    margin-bottom: 15px;
}

.visa-types {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.visa-types li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.visa-types li:before {
    content: '•';
    color: var(--accent);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 10px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #f9fafb;
}

.process-step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(26, 79, 139, 0.2);
}

.process-content h4 {
    margin-bottom: 15px;
}

/* Requirements Section */
.requirements-section {
    padding: 100px 0;
    background: white;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.requirements-list .icon {
    background: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 14px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #f9fafb;
}

.testimonial-card {
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 20px;
    background: white;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-card:before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(26, 79, 139, 0.1);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary);
}

.testimonial-author-info h5 {
    margin-bottom: 5px;
}

.testimonial-author-info p {
    color: #777;
    margin-bottom: 0;
}

.rating {
    color: #ffc107;
    margin-top: 5px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.accordion-item {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    padding: 20px;
    font-weight: 600;
    background: white;
    color: var(--dark);
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: white;
}

.accordion-button:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed):after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1589652717521-10c0d092dea9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 30px;
}


.country-flags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.country-flag {
    width: 60px;
    height: 40px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.country-flag:hover {
    transform: translateY(-5px);
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.requirement-list {
    list-style-type: none;
    padding-left: 0;
}

.requirement-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
}

.requirement-list li:last-child {
    border-bottom: none;
}

.requirement-list i {
    color: var(--accent);
    margin-right: 10px;
    margin-top: 5px;
}

.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--accent);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -13px;
    background-color: white;
    border: 4px solid var(--accent);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.right::after {
    left: -13px;
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 20px;
    background-color: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.country-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;

}

.country-card:hover {
    transform: translateY(-10px);
}

.country-card img {
    height: 180px;
    object-fit: cover;
    width: 100%;
}

.country-card-body {
    padding: 25px;
}

@media screen and (max-width: 768px) {
    .process-timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 18px;
    }

    .right {
        left: 0;
    }

    .testimonial-author-info h5{font-size: 1.0rem;}
    .navbar-nav .ms-lg-3{
        position: static !important;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/herobg.jpeg');
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    color: white;
    text-align: center;
}

.page-header h1 {
    color: #fff;
}

.btn-outline-primary {
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    margin-left: 15px;
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.privacy-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/privacybg.jpeg');
    background-size: cover;
    background-position: center;
    padding: 150px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.privacy-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #fff;
}

.privacy-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.privacy-content {
    padding: 80px 0;
}

.toc-sidebar {
    position: sticky;
    top: 120px;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.toc-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 12px;
}

.toc-list a {
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.toc-list a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.toc-list i {
    margin-right: 10px;
    font-size: 0.8rem;
}

.privacy-container {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.update-info {
    background: #e8f4fd;
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 0 8px 8px 0;
}

.update-info i {
    color: var(--primary);
    margin-right: 10px;
}

.privacy-section {
    margin-bottom: 50px;
}

.privacy-section h2 {
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.privacy-section h3 {
    color: var(--dark);
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

.privacy-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.privacy-highlight {
    background: #f9f9f9;
    border-left: 4px solid var(--accent);
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.contact-section {
    background: #f9f9f9;
    padding: 80px 0;
}

.contact-info-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.contact-info-box:hover {
    transform: translateY(-10px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

@media (max-width: 991px) {
    .toc-sidebar {
        position: static;
        margin-bottom: 40px;
    }
    .testimonial-author-info h5{font-size: 1.0rem;}
    .testimonial-card{padding: 25px !important;}
     .navbar-nav .ms-lg-3{
        position: static !important;
    }
}
#freeconsultation{color: #fff !important;}