* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

:root {
    --primary-color: #32CD32; /* Lime Green */
    --secondary-color: #000000; /* Dark Black */
    --text-color-black: #000000; /* Dark Black */
    --text-color-white: #ffffff; /* White */
    --border-radius: 5px;
    --text-transform: uppercase;
    --font-family: "Poppins", sans-serif;
    --font-size: 14px;
    --line-height: 1.5;
    --transition-duration: 0.3s;
    --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --background-color: #FFFFFF; /* White */
    --hover-color: #28a745; /* Darker Lime Green */
    --active-color: #1e7e34; /* Even Darker Lime Green */
    --header-background: #fff; /* Plain White */
    --nav-btn-color: #fff; /* White */
    --nav-btn-hover-color: #32CD32; /* Lime Green */
    --slider-dot-btn-color: #fff; /* White */
    --slider-dot-btn-hover-color: #32CD32; /* Lime Green */
    --transparent-black: rgba(0, 0, 0, 0.45);
    --overlay-background: rgba(0, 0, 0, 0.55); /* Semi-transparent black */
    --about-text-color: #222222; /* Dark Gray for About Section */
    --service-banner-bg-color: #f8f9fa; /* Light Gray for Service 
    Banner */
    --error-text-color: #d9534f; /* Error Text Color */
    --border-color: #e0e0e0; /* Light Gray Border Color */
    --form-icon-color: #888; /* Gray for Form Icons */
    --contact-modal-bg: rgba(0, 0, 0, 0.6); /* Modal Background */
    --contact-modal-content-bg: #fff; /* Modal Content Background */
    --contact-modal-text-color: #333; /* Modal Text Color */
    --contact-modal-box-shadow: 0 0 30px rgba(0,0,0,0.2); /* Modal Box Shadow */
    --footer-bg-color: #111; /* Footer Background Color */
    --footer-sub-text-color: #888; /* Footer Sub Text Color */
    --footer-comment-color: #ffffff66; /* Footer Comment Color */
    --footer-link-color: #fff; /* Footer Link Color */
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size);
    line-height: var(--line-height);
    color: var(--text-color-black);
    background-color: var(--background-color);
    overflow-x: hidden;  
    overflow-y: auto;    
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--header-background);
    box-shadow: var(--box-shadow);
    padding: 0 40px;
    transition: all 0.3s ease-in-out;
}

header.scrolled {
    height: 70px;
    transition: all 0.3s ease;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    width: 170px
}

.header-nav {
    display: flex;
    align-items: center;
}

.header-nav ul {
    display: flex;
    list-style: none;
}

.header-nav li {
    margin: 0 15px;
}

.header-nav a {
    text-decoration: none;
    color: var(--text-color-black);
    transition: color var(--transition-duration);
}

.header-nav a:hover {
    color: var(--primary-color);
}

.header-nav a.active {
    color: var(--active-color);
}

/* Hamburger Icon */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    border: none;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color-black);
    transition: all 0.3s ease;
}

/* Transform to X */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Main Section Styling */  
main {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: auto;
    overflow: hidden;
}

/* Hero Section Styling */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-content {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease, transform 1.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    overflow: hidden;
}

.slide .overlay-background {
    position: absolute;
    inset: 0;
    background-color: var(--overlay-background);
    z-index: 1;
}

/* ensure it's above the overlay background */
.slide .content {
    position: relative;
    z-index: 2;
}
.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    text-align: center;
    color: var(--text-color-white);
    padding: 0 30px;
    overflow: hidden;
    animation: fadeInUp 1s ease-in-out;
}

.content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-color-white);
}

.content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text-color-white);
}

.content.content-fade {
    text-align: left;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide 1 – Fade In Up Animation */
.slide.active .content-fade .title,
.slide.active .content-fade .subtitle,
.slide.active .content-fade .buttons {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
}

.slide.active .content-fade .subtitle {
  animation-delay: 0.4s;
}
.slide.active .content-fade .buttons {
  animation-delay: 0.8s;
}

.slide.active .content-fade .btn-one {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeBtnUp 0.8s ease forwards;
  animation-delay: 0.9s;
}

.slide.active .content-fade .btn-two {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeBtnUp 0.8s ease forwards;
  animation-delay: 1.2s;
}


@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Keyframes to Buttons */
@keyframes fadeBtnUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideBtnIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Slide 2 – Slide Left Animation */
.slide.active .content-slide-left .title,
.slide.active .content-slide-left .subtitle,
.slide.active .content-slide-left .buttons {
  opacity: 0;
  transform: translateX(-100px);
  animation: slideInLeft 1s ease forwards;
}

.slide.active .content-slide-left .subtitle {
  animation-delay: 0.4s;
}
.slide.active .content-slide-left .buttons {
  animation-delay: 0.8s;
}

.slide.active .content-slide-left .btn-one {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideBtnIn 0.8s ease forwards;
  animation-delay: 0.9s;
}

.slide.active .content-slide-left .btn-two {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideBtnIn 0.8s ease forwards;
  animation-delay: 1.2s;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide 3 – Zoom In with Blur */
.slide.active .content-zoom .title,
.slide.active .content-zoom .subtitle,
.slide.active .content-zoom .buttons {
  opacity: 0;
  transform: scale(0.8);
  filter: blur(8px);
  animation: zoomInBlur 1s ease forwards;
}

.slide.active .content-zoom .subtitle {
  animation-delay: 0.4s;
}
.slide.active .content-zoom .buttons {
  animation-delay: 0.8s;
}

@keyframes zoomInBlur {
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}


.buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 10px;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--text-color-white);
    text-decoration: none;
    transition: background 0.3s;
}

.btn:hover {
    background: var(--secondary-color);
}

.btn-secondary {
    background: var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
}

.slider-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.hero-section:hover .slider-nav {
    opacity: 1;
    pointer-events: all;
}

.nav-btn {
    background: var(--transparent-black);
    border: none;
    color: var(--nav-btn-color);
    font-size: 30px;
    padding: 8px 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: var(--nav-btn-hover-color);
}

/* Dots */
.slider-dots {
    position: relative;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 2;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background: var(--slider-dot-btn-color);
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--primary-color);
    opacity: 1;
    transform: scale(1.2);
}

/* About Us Section Styling */
.about-section, 
.service-section, 
.project-section, 
.testimonial-section, 
.team-section, 
.counter-section, 
.contact-info-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 80px 40px;
    background-color: var(--background-color);
}

.about-section .section-title, 
.service-section .section-title,
.project-section .section-title, 
.testimonial-section .section-title,
.team-section .section-title, 
.counter-section .section-title, 
.contact-info-section .section-title {
    font-size: 24px;
    font-weight: 600;
    line-height: var(--line-height);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--about-text-color);
    text-align: center;
}

.section-title::after {
    content: '';
    position: relative;
    display: block;
    height: 1.3px;
    width: 45px;
    margin-top: 12px;
    background: var(--primary-color);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    will-change: transform, opacity;
}

.about-section-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    gap: 40px;
    margin: 10px auto;
}

.about-section-container .about-section-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 50%;
}

.about-section-heading {
    margin-bottom: 20px;
}

.about-section-container .about-section-heading .section-heading {
    font-size: 18px;
    color: var(--text-color-black);
    font-weight: 600;
}

.about-section-container .about-section-content p {
    font-size: 14px;
    color: var(--about-text-color);
    line-height: 1.6;
    margin-top: 8px;
}

.about-section-context {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    padding-left: 10px;
    margin-top: 2rem;
    gap: 15px;
}

.about-section-context .context-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.about-section-context .context-item span svg {
    width: 32px;
    height: 32px;
}

.about-section-context .context-item .context-Bx .context-title {
    display: inline-block;
    font-size: 18px;
    text-transform: var(--text-transform);
    text-decoration: none;
    font-weight: 600;
    color: var(--text-color-black);
    transition: color var(--transition-duration);
}

.about-section-context .context-item .context-Bx .context-title:hover {
    color: var(--primary-color);
}

.about-section-container .about-section-image {
    width: 50%;
    max-width: 100%;
    overflow: hidden;
}

.about-section-container .about-section-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Service Section Styling */
.service-section {
    background-color: var(--service-banner-bg-color);
    padding-bottom: 12rem;
}

.service-section .service-section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.service-section-container .section-subtitle {
    margin-top: 10px;
    margin-bottom: 4rem;
    text-align: center;
    width: 100%;
    max-width: 1000px;
    font-size: 14px;
    line-height: 1.6;
}

.service-section-container .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 50px;
    margin: 0 auto;
    box-sizing: border-box;
}

.service-section-container .service-card {
    display: flex;
    align-items: flex-start;
    margin: 0 auto;
    gap: 10px;
}

.service-section-container .service-card span svg {
    width: 32px;
    height: 32px;
}

.service-section-container .service-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    gap: 10px;
}

.service-section-container .service-card-content h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: var(--text-transform);
    color: var(--text-color-black);
}

.service-section-container .service-card-content p {
    font-size: 14px;
    color: var(--about-text-color);
    line-height: 1.6;
}

[data-aos] {
  will-change: transform;
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Contact Us Section Styling */
.contact-section {
    background-color: transparent;
    margin-top: -100px;
    /* overlays on previous section */
    padding: 40px 20px;
    z-index: 10;
    position: relative;
}

.contact-section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-color);
    padding: 40px 20px;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    overflow: hidden;
    overflow: visible;
}

.contact-section-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 8px;
    width: 100%;
    background-image: repeating-linear-gradient(to right,
            var(--text-color-black),
            var(--text-color-black) 1px,
            transparent 1px,
            transparent 6px);
    opacity: 0.8;
}

.contact-section-image {
    position: absolute;
    left: -0px;
    /* adjust for how far out you want it */
    bottom: 0;
    z-index: 2;
}


.contact-section-image img {
    height: 250px;
    object-fit: contain;
}

.contact-section-text {
    flex: 1 1 400px;
    color: var(--text-color-white);
    padding-left: 180px;
}

.contact-section-text h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-section-text p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color-white);
}

.contact-section-action {
    flex-shrink: 0;
}

.btn-outline {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--text-color-white);
    color: var(--text-color-white);
    background: linear-gradient(to right, var(--text-color-white) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-outline:hover {
    background-position: left bottom;
    color: var(--text-color-black);
    border-color: var(--text-color-white);

}

/* Contact Modal Styling */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--contact-modal-bg);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.contact-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--contact-modal-content-bg);
    padding: 40px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: var(--contact-modal-box-shadow);
}

.modal-content h2 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    text-transform: var(--text-transform);
    color: var(--about-text-color);
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 45px 14px 38px;
    /* more top padding for label */
    border: 1px solid var(--border-color);
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    background-color: var(--text-color-white);
    resize: none;
}

.form-group label {
    position: absolute;
    left: 38px;
    top: 18px;
    /* aligned with padding */
    font-size: 14px;
    color: var(--form-icon-color);
    background: var(--text-color-white);
    padding: 0 4px;
    pointer-events: none;
    transition: 0.3s ease;
}

/* Float label */
.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -10px;
    font-size: 12px;
    color: var(--about-text-color);
}

/* Icon inside field */
.input-icon {
    position: absolute;
    top: 28px;
    left: 12px;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

/* Error styling */
.error-msg {
    position: absolute;
    top: 2px;
    right: 5px;
    color: var(--error-text-color);
    font-size: 11px;
    font-style: italic;
    display: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

.form-group.error input,
.form-group.error textarea {
    border-color: var(--error-text-color);
}

.form-group.error .error-msg {
    display: block;
}

.send-btn {
    background-color: var(--primary-color);
    color: var(--text-color-white);
    font-size: 14px;
    padding: 12px 30px;
    border: none;
    font-weight: 500;
    text-transform: var(--text-transform);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.send-btn:hover {
    background-color: var(--hover-color);
    transition: background-color 0.3s ease;
}


/* Toast Notification */
.toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--text-color-black);
    color: var(--text-color-white);
    padding: 12px 20px;
    border-radius: 6px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 1000;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}


.service-section {
    background-color: var(--service-banner-bg-color);
    padding-bottom: 12rem;
}

/* Projects Section Styling */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.project-item img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.1);
    transition: transform 0.6s ease;
}

.project-item:hover img {
    transform: scale(1.2);
}

/* Zoom effect overlay */
.project-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(50, 205, 50, 0.6);
    transform: scale(0);
    transform-origin: center;
    transition: transform 0.5s ease;
    z-index: 1;
}

.project-item:hover::before {
    transform: scale(1);
}

/* Overlay content */
.project-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-color-white);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.5s ease;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-category {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 5px;
}

.project-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: var(--text-transform);
    margin: 10px 0;
}

.project-title::after {
    content: '';
    position: relative;
    display: block;
    height: 1.3px;
    width: 45px;
    margin-top: 12px;
    margin-bottom: 10px;
    background: var(--text-color-white);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    will-change: transform, opacity;
}

.project-description {
    font-size: 16px;
    max-width: 230px;
    text-align: center;
}

/* Individual entrance animations */
.project-category,
.project-title,
.project-description {
    opacity: 0;
    transition: all 0.5s ease;
    position: relative;
    z-index: 3;
}

/* Start positions */
.project-category {
    transform: translateY(20px);
    /* fade from bottom */
}

.project-title {
    transform: translateX(-20px);
    /* fade from left */
}

.project-description {
    transform: translateY(-20px);
    /* fade from top */
}

/* Animate on hover */
.project-item:hover .project-category,
.project-item:hover .project-title,
.project-item:hover .project-description {
    opacity: 1;
    transform: translate(0, 0);
}

/* Testimonial Section Styling */
.testimonial-section {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('./assets/src/jpeg/review-banner.jpg') center/cover no-repeat;
    color: var(--text-color-white);
    padding: 40px 20px;
    /* text-align: center; */
    position: relative;
    overflow: hidden;
}

.testimonial-section .section-title {
    color: var(--text-color-white);
    margin-bottom: 2rem;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 25px;
    position: relative;
    transition: transform 0.4s ease, background 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-avatar {
    position: relative;
    width: 85px;
    height: 85px;
    margin: 0 auto 20px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 28px;
    color: var(--primary-color);
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 25px;
}

.client-name {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.client-role {
    font-size: 0.9rem;
    color: #ccc;
}

/* Counter Section Styling */
.counter-section {
    margin-bottom: 20px;
}

.counter-section-container {
    width: 100%;
    background: var(--service-banner-bg-color);
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
    text-align: center;
    margin-top: 2rem;
    /* border-top: 1px solid #ccc; */
}

.counter-box {
    flex: 1;
    border-right: 1px solid #ddd;
    padding: 0 20px;
}

.counter-box:last-child {
    border-right: none;
}

.counter {
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-color);
}

.counter-box p {
    margin-top: 10px;
    font-size: 16px;
    color: var(--about-text-color);
}

/* Team Section Styling */
.team-section {
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.team-card {
    background: var(--text-color-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    width: 350px;
    border-bottom: 3px solid var(--primary-color);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.team-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    font-size: 16px;
    margin: 10px 0 5px;
    color: var(--primary-color);
    font-weight: 600;
}

.team-info .email {
    font-size: 14px;
    color: var(--form-icon-color);
    margin-top: 5px;
}

.team-socials {
    margin-top: 15px;
}

.team-socials i {
    font-size: 18px;
    margin: 0 8px;
    color: #555;
    transition: color 0.3s;
    cursor: pointer;
}

.team-socials i:hover {
    color: var(--primary-color);
}

/* Main Contact Form Section Styling */
.contact-info-section {
    padding: 60px 40px;
    background-color: var(--text-color-white);
}

.contact-info-section .section-title {
    margin-bottom: 40px;
    color: var(--about-text-color);
}

.contact-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 15px;
}

/* Left Column (Map & Details) */
.contact-left {
    flex: 1 1 48%;
    min-width: 300px;
    box-sizing: border-box;
}

.contact-left iframe {
    width: 100%;
    height: 320px;
    border: none;
    display: block;
    max-width: 100%;
}

.contact-details {
    margin-top: 20px;
    font-size: 14px;
    color: var(--about-text-color);
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    word-break: break-word;
}

/* Right Column (Form) */
.contact-right {
    flex: 1 1 48%;
    min-width: 300px;
    box-sizing: border-box;
}

.contact-right h3 {
    font-size: 16px;
    color: var(--about-text-color);
    font-weight: 500;
    margin-bottom: 20px;
}

/* Scroll to Top Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
    background-color: var(--primary-color);
    color: var(--text-color-white);
    border: none;
    outline: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    display: none;
    /* hidden by default */
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#scrollToTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollToTopBtn:hover {
    background-color: var(--text-color-black);
}

/* Footer Styling */
.footer-section {
    background-color: var(--footer-bg-color);
    color: var(--text-color-white);
    padding: 60px 40px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin: 0 auto;
}

.footer-column h4 {
    color: var(--text-color-white);
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    color: var(--text-color-white);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-column li {
    font-size: 14px;
    font-weight: 400;
    color: var(--footer-sub-text-color);
    line-height: 1.5;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--footer-sub-text-color);
    text-decoration: none;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.recent-comments li {
    font-style: italic;
}

.recent-comments li strong {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-color-white);
    font-style: normal;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
}

.footer-bottom p {
    color: var(--footer-comment-color);
    margin: 0;
}

.footer-socials a {
    color: var(--text-color-white);
    margin: 0 8px;
    font-size: 12px;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: var(--primary-color);
}

/* Responsive Design Breakpoints */


