@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    font-family: "Inter", sans-serif !important;
}

/* Base Styles */
:root {
    --primary: #1a3a8f;
    --secondary: #f4a261;
    --accent: #e76f51;
    --dark: #2a2d3b;
    --light: #f8f9fa;
    --text: #333333;
    --text-light: #6c757d;
    --white: #ffffff;
    --black: #000000;
    /* --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif; */
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.navbar ul {
    display: flex;
}

.navbar ul li {
    margin-left: 30px;
}

.navbar ul li a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: var(--primary);
}

.navbar ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.navbar ul li a:hover:after,
.navbar ul li a.active:after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
}

.phone {
    color: var(--dark);
    font-weight: 500;
    margin-right: 30px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.phone:hover {
    color: var(--primary);
}

.phone i {
    margin-right: 8px;
    font-size: 16px;
}

.hamburger {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
    display: none;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark);
    transition: all 0.3s ease;
}

/* Mobile menu styles */
@media (max-width: 992px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        padding: 80px 30px 30px;
    }

    .navbar.active {
        right: 0;
    }

    .navbar ul {
        flex-direction: column;
    }

    .navbar ul li {
        margin: 0 0 20px 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.6); */
}
.marg-1 {
    
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}
.hero-content {
    max-width: 800px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 60px;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.scroll-down span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transform: rotate(45deg);
    margin: -10px;
    animation: scrollDown 2s infinite;
}

.scroll-down span:nth-child(2) {
    animation-delay: -0.2s;
}

.scroll-down span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

/* Stats Section */
.stats-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
}

.stat-number {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

.stat-title {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* About Preview Section */
.about-preview {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    background-color: var(--light);
    transition: var(--transition);
}

.about-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--white);
    font-size: 30px;
    border-radius: 50%;
    transition: var(--transition);
}

.about-item:hover .about-icon {
    background-color: var(--secondary);
    transform: rotateY(180deg);
}

.about-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Services Preview */
.services-preview {
    background-color: #f5f7fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--primary);
    background-color: rgba(26, 58, 143, 0.1);
}

.service-card h3 {
    padding: 0 25px;
    margin-top: 20px;
}

.service-card p {
    padding: 0 25px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.read-more {
    display: inline-block;
    padding: 0 25px 25px;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white);
}

.testimonial-slider {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-item {
    padding: 0 15px;
}

.testimonial-content {
    background-color: var(--light);
    padding: 40px;
    border-radius: 10px;
    position: relative;
}

.testimonial-content:after {
    content: '\201D';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: rgba(26, 58, 143, 0.1);
    font-family: var(--font-secondary);
    line-height: 1;
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.client-info h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.client-info span {
    color: var(--text-light);
    font-size: 14px;
}

/* News Section */
.news-section {
    background-color: #f5f7fa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    line-height: 1;
}

.news-date span:first-child {
    font-size: 22px;
    font-weight: 700;
    display: block;
    margin-bottom: 3px;
}

.news-date span:last-child {
    font-size: 14px;
    text-transform: uppercase;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.news-content h3 a {
    color: var(--dark);
    transition: var(--transition);
}

.news-content h3 a:hover {
    color: var(--primary);
}

.news-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0d1b4a 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.cta-content h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    opacity: 0.9;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-col p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary);
    color: var(--dark);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    opacity: 0.8;
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--secondary);
    transform: translateX(5px);
}

.contact-info {
    margin-top: 20px;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary);
    font-size: 18px;
    margin-top: 3px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    opacity: 0.7;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

/* Page Hero */
.page-hero { 
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/page-hero-bg.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 120px 0 40px;
}

.page-hero h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* About Page Styles */
.our-story {
    background-color: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-text p {
    margin-bottom: 20px;
}

.our-values {
    background-color: #f5f7fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--white);
    font-size: 30px;
    border-radius: 50%;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background-color: var(--secondary);
    transform: rotateY(180deg);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Team Section */
.team-section {
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-social {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.team-member:hover .member-social {
    opacity: 1;
    transform: translateY(0);
}

.member-social a {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.member-social a:hover {
    background-color: var(--secondary);
    transform: translateY(-5px);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.member-info span {
    display: block;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.member-info p {
    color: var(--text-light);
    font-size: 14px;
}

/* Client Approach */
.client-approach {
    background-color: #f5f7fa;
}

.approach-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-secondary);
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

/* Accreditations */
.accreditations {
    background-color: var(--white);
}

.accreditations-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.accreditation-item {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: var(--transition);
}

.accreditation-item:hover {
    opacity: 1;
}

.accreditation-item img {
    max-height: 100%;
    width: auto;
    filter: grayscale(100%);
    transition: var(--transition);
}

.accreditation-item:hover img {
    filter: grayscale(0);
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #0d1b4a 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.about-cta h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 20px;
}

.about-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    opacity: 0.9;
}

/* Services Page Styles */
.services-overview {
    background-color: var(--white);
}

.services-tabs {
    margin-top: 50px;
}

.tab-header {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.tab-btn {
    padding: 12px 25px;
    background-color: var(--light);
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
}

.tab-btn:not(.active):hover {
    background-color: #e0e0e0;
}

.tab-pane {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tab-pane.active {
    display: grid;
}

.tab-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.tab-image img {
    width: 100%;
    height: auto;
    display: block;
}

.tab-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary);
}

.tab-text ul {
    margin-bottom: 25px;
}

.tab-text ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.tab-text ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary);
}

/* Service Features */
.service-features {
    background-color: #f5f7fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--white);
    font-size: 30px;
    border-radius: 50%;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--secondary);
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Case Studies */
.case-studies {
    background-color: var(--white);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.case-item {
    background-color: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.case-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.case-image {
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.case-item:hover .case-image img {
    transform: scale(1.1);
}

.case-content {
    padding: 25px;
}

.case-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.case-content .case-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.case-content .case-meta span {
    display: flex;
    align-items: center;
}

.case-content .case-meta i {
    margin-right: 5px;
    color: var(--secondary);
}

.case-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Service Process */
.service-process {
    background-color: #f5f7fa;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-secondary);
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.process-content {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.process-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

/* Service FAQ */
.service-faq {
    background-color: var(--white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px 25px;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #142b6e;
}

.faq-question i {
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    background-color: var(--light);
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-answer.show {
    padding: 20px 25px;
    max-height: 500px;
}

/* Service CTA */
.service-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #0d1b4a 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-box p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact-info-section {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--white);
    font-size: 30px;
    border-radius: 50%;
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    background-color: var(--secondary);
    transform: rotateY(180deg);
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.contact-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--secondary);
}

.contact-link:hover i {
    transform: translateX(5px);
}

/* Contact Form */
.contact-form-section {
    background-color: #f5f7fa;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary);
}

#contactForm {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.form-col {
    flex: 1;
    position: relative;
}

.form-col.full {
    flex: 0 0 100%;
}

input,
select,
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 16px;
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 58, 143, 0.1);
}

label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
}

input:focus+label,
input:not(:placeholder-shown)+label,
select:focus+label,
select:not([value=""]):valid+label,
textarea:focus+label,
textarea:not(:placeholder-shown)+label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background-color: var(--white);
    padding: 0 5px;
    color: var(--primary);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

/* Map Section */
.map-section {
    background-color: var(--white);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Team Contact */
.team-contact {
    background-color: #f5f7fa;
}

.team-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-contact-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.team-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-contact-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--light);
}

.team-contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-contact-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.team-contact-info span {
    display: block;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-contact-meta {
    margin-top: 20px;
}

.team-contact-meta a {
    display: block;
    margin-bottom: 10px;
    color: var(--text-light);
    transition: var(--transition);
}

.team-contact-meta a:hover {
    color: var(--primary);
}

.team-contact-meta i {
    margin-right: 8px;
    color: var(--secondary);
}

/* Contact FAQ */
.contact-faq {
    background-color: var(--white);
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #0d1b4a 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {

    .hero-content h1 {
        font-size: 50px;
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-image {
        order: -1;
    }

    .tab-pane {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tab-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-content {
        max-width: 300px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        padding: 80px 30px 30px;
    }

    .navbar.active {
        right: 0;
    }

    .navbar ul {
        flex-direction: column;
    }

    .navbar ul li {
        margin: 0 0 20px;
    }

    .navbar ul li a {
        color: var(--dark);
        font-size: 18px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .header.scrolled .hamburger.active span {
        background-color: var(--dark);
    }

    .hero {
        min-height: 700px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .btn { 
        text-align: center;
        padding: 10px 10px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }

    .cta-btns {
        flex-direction: column;
        gap: 15px;
    }

    .phone,
    .phone i {
        display: none;
    }
}

@media (max-width: 576px) {
    section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

.logo img {
    width: 180px;
    /* Adjust as needed */
    height: auto;
    display: block;
}

/* ===== Value Cards Section ===== */
.value-cards {
    background-color: #f9fafc;
    padding: 100px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, #0d1b4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 28px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.card-features {
    margin-top: 20px;
}

.card-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.card-features i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 14px;
}

/* ===== Testimonials Carousel ===== */
.client-testimonials {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    background: var(--light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 0 20px;
}

.client-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--primary);
}

.client-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

blockquote {
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
}

blockquote:before,
blockquote:after {
    content: '"';
    color: var(--secondary);
    font-size: 24px;
}

.client-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.client-info span {
    display: block;
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 14px;
}

.rating {
    color: var(--secondary);
    margin-top: 10px;
}

/* ===== Comparison Table ===== */
.comparison-section {
    padding: 100px 0;
    background-color: #f9fafc;
}

.comparison-table {
    overflow-x: auto;
    margin-top: 50px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

th,
td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: var(--primary);
    color: white;
    font-weight: 600;
}

tr:nth-child(even) {
    background-color: #f8f9fa;
}

td:last-child {
    font-weight: 600;
    color: var(--primary);
}

@media (max-width: 768px) {
    .value-card {
        padding: 30px 20px;
    }

    th,
    td {
        padding: 12px 15px;
    }
    .page-hero {
        padding: 100px 0 10px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 58, 143, 0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 0px !important;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-features {
    margin-bottom: 20px;
    padding: 0 25px;
    background-color: #fff;
}

.service-features li {
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.service-features i {
    color: var(--secondary);
    margin-right: 8px;
    font-size: 12px;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--secondary);
}

.read-more:hover i {
    transform: translateX(5px);
}