/* Base Styles & Variables */
:root {
    /* Dark Theme Colors */
    --primary-color: #0a192f;
    --secondary-color: #172a45;
    --accent-color: #ADD8E6;
    --text-color: #e6f1ff;
    --text-light: #ccd6f6;
    --background-color: #020c1b;
    --section-bg: #0a192f;
    --card-bg: #112240;
    --border-color: #1e2a3a;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    --nav-bg: rgba(10, 25, 47, 0.95);
    
    /* Fonts */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 50px 2%;
    --container-width: 100%;
    --max-container-width: 1400px;
       
    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    position: relative;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

html::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, Opera */
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    transition: var(--transition);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    width: var(--container-width);
    max-width: var(--max-container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-heading span {
    color: var(--accent-color);
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--body-font);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(173, 216, 230, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(173, 216, 230, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(173, 216, 230, 0);
    }
}

.text-center {
    text-align: center;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 45px 10px 20px;
    background-color: var(--nav-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
    display: flex;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo-div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 100px;
    height: auto;
    margin-right: -5px;
    position: relative;
    top: -15px;
}

.nav-content h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--text-color);
}

.tagline {
    font-size: 0.8rem;
    margin-top: 5px;
    color: #ffffff;
    font-style: italic;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: color 0.3s ease;
}

.header-links {
    display: flex;
    align-items: center;
}

.header-links li {
    margin-left: 30px;
}

.header-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.header-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.header-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.hero-section {
    margin-top: 150px;
    height: calc(100vh - 150px); 
    position: relative;
    overflow: hidden;
}

.photo-section {
    display: flex;
    height: 100%;
    width: 100%;
    padding: 0 2%;
    box-sizing: border-box;
}

.header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 2%;
    z-index: 2;
}

.hero-heading {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-heading span {
    color: var(--accent-color);
}

.hero-subheading {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image-container {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(10, 38, 71, 0.8) 50%, rgba(10, 38, 71, 0) 100%);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
    transform: rotate(45deg);
    margin: -10px;
    animation: scroll 2s infinite;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: -0.2s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

/* About Section */
.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.lead-para {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-weight: 500;
}

.about-image {
    flex: 1;
}

.image-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--accent-color);
    border-radius: 10px;
    z-index: -1;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    flex: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-family: var(--heading-font);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    width:100%
}

.services .section-container{
    padding: 0 5%;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(23, 42, 69, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

/* Service Icons - Colorful */
.service-icon .fa-bullseye { /* Talent Acquisition */
    color: #FF6B6B; /* Soft red */
}

.service-icon .fa-user-tie { /* Permanent Hiring */
    color: #64B5F6; /* Soft blue */
}

.service-icon .fa-file-signature { /* Contract Staffing */
    color: #81C784; /* Soft green */
}

/* Optional: Add a fourth color if you have more services */
.service-icon .fa-lightbulb { /* Example for additional service */
    color: #FFB74D; /* Soft orange */
}

/* Hover effects */
.service-card:hover .service-icon i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Background colors for icons */
.service-icon {
    background-color: rgba(10, 25, 47, 0.2) !important; /* Dark blue background */
}


/* Specific background colors on hover */
.service-card:hover .service-icon .fa-bullseye {
    background-color: rgba(255, 107, 107, 0.2);
}

.service-card:hover .service-icon .fa-user-tie {
    background-color: rgba(100, 181, 246, 0.2);
}

.service-card:hover .service-icon .fa-file-signature {
    background-color: rgba(129, 199, 132, 0.2);
}

.service-card:hover .service-icon {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
}

.service-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent-color);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--section-bg);
    padding: var(--section-padding);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    display: none;
    padding: 30px;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.testimonial-content {
    text-align: center;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 2rem;
    color: var(--accent-color);
    opacity: 0.5;
}

.testimonial-content p::before {
    margin-right: 5px;
}

.testimonial-content p::after {
    margin-left: 5px;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--accent-color);
}

.client-info h4 {
    margin-bottom: 5px;
    color: var(--text-color);
}

.client-info p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

/* Location Section */
.map-container {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    align-items: center;
}

.map-info {
    flex: 1;
}

.map-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.map-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.map-info i {
    margin-right: 10px;
    color: var(--accent-color);
    width: 20px;
    text-align: center;
    transition: color 0.3s ease;
}

.map-info i:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.office-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.office {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.office:hover {
    transform: translateY(-5px);
}

.office h4 {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-color);
}

.office h4 i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.map-embed {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Section */
.contact-container {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(23, 42, 69, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    color: var(--secondary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Contact Info Icons - Matching Colors */
.map-info i.fa-map-marker-alt, 
.footer-contact i.fa-map-marker-alt {
    color: #FF6B6B; /* Soft red - matches location icon */
}

.map-info i.fa-envelope, 
.footer-contact i.fa-envelope {
    color: #64B5F6; /* Soft blue - matches email icon */
}

.map-info i.fa-phone-alt, 
.footer-contact i.fa-phone-alt {
    color: #81C784; /* Soft green - matches phone icon */
}

.map-info i.fa-clock, 
.footer-contact i.fa-clock {
    color: #FFB74D; /* Soft orange - matches clock icon */
}

/* Hover effects */
.map-info i:hover,
.footer-contact i:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}


/* Individual icon colors - Contact Section */
.info-item:nth-child(1) .info-icon { /* Location pin */
    color: #FF6B6B; /* Soft red */
    background-color: rgba(255, 107, 107, 0.1);
}

.info-item:nth-child(2) .info-icon { /* Email */
    color: #64B5F6; /* Soft blue */
    background-color: rgba(100, 181, 246, 0.1);
}

.info-item:nth-child(3) .info-icon { /* Phone */
    color: #81C784; /* Soft green */
    background-color: rgba(129, 199, 132, 0.1);
}

.info-item:nth-child(4) .info-icon { /* Clock */
    color: #FFB74D; /* Soft orange */
    background-color: rgba(255, 183, 77, 0.1);
}

.info-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.info-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-form {
    flex: 1;
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.floating-label input,
.floating-label textarea,
.floating-label select {
    width: 100%;
    padding: 15px;
    border: 1px solid #64ffda;
    border-radius: 4px;
    background-color: transparent;
    color: #e6f1ff;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: var(--transition);
}

.floating-label textarea {
    min-height: 150px;
    resize: vertical;
}

.floating-label select {
    appearance: none;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23e6f1ff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.floating-label select option {
    color: #e6f1ff;
    background-color: var(--card-bg);
}

.floating-label input::placeholder,
.floating-label textarea::placeholder {
    color: rgba(230, 241, 255, 0.5);
}

.floating-label label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #e6f1ff;
    pointer-events: none;
    transition: var(--transition);
    background-color: var(--card-bg);
    padding: 0 5px;
}

.floating-label .focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.floating-label input:focus,
.floating-label textarea:focus,
.floating-label select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.floating-label input:focus ~ .focus-border,
.floating-label textarea:focus ~ .focus-border,
.floating-label select:focus ~ .focus-border {
    width: 100%;
}

.floating-label input:focus ~ label,
.floating-label input:not(:placeholder-shown) ~ label,
.floating-label textarea:focus ~ label,
.floating-label textarea:not(:placeholder-shown) ~ label,
.floating-label select:focus ~ label,
.floating-label select:not([value='']) ~ label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: var(--accent-color);
    background-color: var(--card-bg);
}

.form-submit {
    text-align: center;
}

.form-submit .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
}

.form-submit .btn i {
    margin-left: 10px;
    transition: var(--transition);
}

.form-submit .btn:hover i {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 80px 0 10px;
    padding-left: 2%;
    padding-right: 2%;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 60px;
    height: auto;
    margin-right: -15px;
    position: relative;
    top: -10px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-left: 13px;
    padding-bottom: 0;
    letter-spacing: -0.5px
}

.footer-logo h3::after {
    display: none;
}

.footer-about {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.newsletter-form {
    position: relative;
    margin-bottom: 25px;
}

.newsletter-form .input-group {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: var(--body-font);
}

.newsletter-form button {
    padding: 0 20px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: #ffffff;
}

.footer-contact p {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    background-color: #0a192f;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-color);
}

.success-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.modal h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.modal p {
    margin-bottom: 25px;
    color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-heading {
        font-size: 3rem;
    }
    
    .section-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .photo-section {
        flex-direction: column;
        height: auto;
    }
    
    .header-content {
        padding-right: 0;
        padding-bottom: 50px;
        text-align: center;
        align-items: center;
        order: -1;
    }
    
    .hero-subheading {
        max-width: 100%;
    }
    
    
    .hero-buttons {
        justify-content: center;
    }

    .hero-section {
        height: auto;
        min-height: auto;
        padding-bottom: 50px;
        position: relative;
        z-index: 1;
        overflow: visible;
    }

    .hero-image-container {
        height: 400px;
        width: 100%;
        position: relative;
        margin-top: 30px;
    }

    .hero-img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 1 !important;
        position: relative !important;
        z-index: 9999 !important;
    }
    
    .hero-overlay {
        background: linear-gradient(0deg, var(--primary-color) 0%, rgba(10, 38, 71, 0.8) 50%, rgba(10, 38, 71, 0) 100%);
    }

    .about-content {
        flex-direction: column;
    }
    
    .map-container {
        flex-direction: column;
    }
    
    .map-info {
        margin-bottom: 30px;
    }
    
    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--nav-bg);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
    }
    
    .header-links.active {
        transform: translateY(0);
    }
    
    .header-links li {
        margin: 15px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-subheading {
        font-size: 1rem;
    }

    .hero-image-container {
        height: 350px;
        border-radius: 8px;
        margin-top: 20px;
        z-index: 2;
    }

    .hero-overlay {
        background: linear-gradient(0deg, var(--primary-color) 0%, rgba(10, 38, 71, 0.5) 50%, rgba(10, 38, 71, 0.1) 100%);
    }
    
    .stats-container {
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 20px;
    }
    
    .office-locations {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-logo img {
        width: 50px;
        margin-right: 2px;
    }
    .footer-logo h3 {
        font-size: 1.2rem;
        margin-left: -1px;
    }
    .section-container {
        padding: 0 3%;
    }
    
    .about-image,
    .map-embed {
        margin-right: 0;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-image-container {
        height: 300px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.slide-up {
    animation: slideUp 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@-moz-document url-prefix() {
    .floating-label select {
        padding-right: 30px;
        text-indent: 0.01px;
        text-overflow: '';
    }
}