 :root {
     --primary-color: #E56734;
     --secondary-color: white;
     --accent-color: #f4f4f4;
     --text-color: #333;
     --primary-light: #f0824a;
     --primary-dark: #d14d1f;
     --dark-bg: #1a1a1a;
     --dark-card: #2d2d2d;
     --dark-text: #e0e0e0;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Poppins', sans-serif;
 }

 .hero-section {
     min-height: 400px;
     max-height: 640px;
     height: 80dvh;
     display: flex;
     align-items: center;
     background-color: var(--primary-color);
     color: var(--secondary-color);
     position: relative;
     overflow: hidden;
     padding-top: 1rem;
 }

 .hero-subtitle {
     font-weight: 500;
     font-size: clamp(1rem, 2dvw + 0.5rem, 1.5rem);
     line-height: 1.5;
     margin-bottom: 3rem;
 }

 .bg-text {
     position: absolute;
     bottom: 0;
     right: 0;
     font-size: clamp(10rem, 25dvw, 28rem);
     font-weight: bold;
     color: rgba(255, 255, 255, 0.158);
     line-height: 1;
     transform: translateY(20%);
 }

 /* Typography Scale based on hero-title (h1) */
 h1,
 .hero-title {
     font-weight: 700;
     font-size: clamp(1.8rem, 4dvw + 1rem, 4rem);
     line-height: 1.1;
     margin-bottom: 2rem;
 }

 h2 {
     font-weight: 650;
     font-size: clamp(1.5rem, 3.2dvw + 0.8rem, 3.2rem);
     line-height: 1.15;
     margin-bottom: 1.75rem;
 }

 h3 {
     font-weight: 600;
     font-size: clamp(1.25rem, 2.6dvw + 0.6rem, 2.6rem);
     line-height: 1.2;
     margin-bottom: 1.5rem;
 }

 h4 {
     font-weight: 600;
     font-size: clamp(1.1rem, 2.1dvw + 0.5rem, 2.1rem);
     line-height: 1.25;
     margin-bottom: 1.25rem;
 }

 h5 {
     font-weight: 500;
     font-size: clamp(1rem, 1.7dvw + 0.4rem, 1.7rem);
     line-height: 1.3;
     margin-bottom: 1rem;
 }

 h6 {
     font-weight: 500;
     font-size: clamp(0.9rem, 1.4dvw + 0.3rem, 1.4rem);
     line-height: 1.35;
     margin-bottom: 0.75rem;
 }

 p {
     font-weight: 500;
     font-size: clamp(0.875rem, 1.2dvw + 0.2rem, 1.13rem);
     line-height: 1.6;
     margin-bottom: 1rem;
 }

 section {
     padding: 2rem 0;
 }

 .section-title {
     color: var(--primary-color);
 }

 /* grwoth architect */
 .growth-architect {
     max-width: 100dvw;
     overflow: hidden;
 }

 .solutions-container {
     display: flex;
     width: 100vw;
     height: 400px;
     margin: 0;
     padding: 0;
 }

 .solution-card {
     border: 1px solid rgba(192, 192, 192, 0.2);
     background-color: var(--dark-card);
     flex: 1;
     height: 100%;
     position: relative;
     overflow: hidden;
     transition: all 0.5s ease;
     color: var(--dark-text);
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 2rem;
     font-weight: 500;
     font-size: clamp(0.875rem, 1.2dvw + 0.2rem, 1.13rem);
 }

 .solution-card:hover {
     flex: 2;
     background-color: var(--primary-color);
 }

 .solution-card:hover h2 {
     color: var(--secondary-color);
 }

 .solution-card:hover .description {
     color: var(--accent-color);
 }

 .solutions-container:hover .solution-card:not(:hover) {
     flex: 0.7;
 }

 .solution-card h2 {
     font-size: 1.8rem;
     margin-bottom: 1rem;
     transition: all 0.3s ease;
     white-space: nowrap;
 }

 .solution-card:hover h2 {
     font-size: 2.2rem;
 }


 .solutions-number {
     position: absolute;
     top: 10px;
     right: 10px;
     font-size: 1.5rem;
     font-weight: bold;
     color: var(--primary-color);
     padding: 0.5rem 1rem;
 }

 .solution-card:hover .solutions-number {
     color: var(--secondary-color);
 }

 .solution-card .description {
     max-height: 0;
     opacity: 0;
     overflow: hidden;
     transition: all 0.3s ease;
     font-size: 1.1rem;
     width: 100%;
     line-height: 1.5;
 }

 .solution-card:hover .description {
     max-height: 300px;
     opacity: 1;
     margin-bottom: 1rem;
 }

 .solution-card .arrow-icon {
     width: 50px;
     height: 50px;
     background-color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-top: 1rem;
     flex-shrink: 0;
     transition: all 0.3s ease;
 }

 .solution-card:not(:hover) .arrow-icon {
     transform: scale(0.8);
 }

 .solution-card .arrow-icon svg {
     width: 20px;
     height: 20px;
 }

 /* Responsive adjustments */
 @media (max-width: 992px) {
     .solutions-container {
         flex-direction: column;
         height: auto;
     }

     .solution-card {
         flex: 1;
         height: 100px;
         transition: all 0.5s ease;
     }

     .solution-card:hover {
         flex: 1;
         height: 300px;
     }

     .solutions-container:hover .solution-card:not(:hover) {
         flex: 1;
         height: 80px;
     }

     .solution-card h2 {
         font-size: 1.8rem;
     }

     .solution-card:hover h2 {
         font-size: 2.1rem;
     }

     .solution-card .description {
         font-size: 1rem;
     }

     .solution-card .arrow-icon {
         width: 40px;
         height: 40px;
     }
 }

 @media (max-width: 576px) {
     .solution-card {
         padding: 1rem;
     }

     .solution-card h2 {
         font-size: 1.5rem;
     }

     .solution-card:hover h2 {
         font-size: 1.8rem;
     }

     .solution-card .description {
         font-size: 0.95rem;
     }

     .solution-card .arrow-icon {
         width: 30px;
         height: 30px;
     }

     .solution-card .arrow-icon svg {
         width: 15px;
         height: 15px;
     }
 }


 /* creations section */
 .funky-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     width: 100%;
     box-sizing: border-box;
 }

 .funky-item {
     overflow: hidden;
     position: relative;
     transition: all 0.3s ease;
     aspect-ratio: 1;
     cursor: pointer;
 }

 .funky-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

 .funky-item:hover img {
     transform: scale(1.1);
 }

 .hover-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.8));
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     align-items: center;
     opacity: 0;
     transition: opacity 0.3s ease;
     padding: 30px 20px;
     text-align: center;
 }

 .funky-item:hover .hover-overlay {
     opacity: 1;
 }

 .overlay-title {
     color: white;
     font-size: 1.5rem;
     font-weight: bold;
     margin-bottom: 10px;
     transform: translateX(-30px);
     transition: transform 0.4s ease 0.1s;
 }

 .funky-item:hover .overlay-title {
     transform: translateX(0);
 }

 .overlay-text {
     color: rgba(255, 255, 255, 0.9);
     font-size: 0.95rem;
     line-height: 1.4;
     margin-bottom: 20px;
     transform: translateX(30px);
     transition: transform 0.4s ease 0.15s;
 }

 .funky-item:hover .overlay-text {
     transform: translateX(0);
 }

 .portfolio-link {
     /* display: inline-flex; */
     display: none;
     align-items: center;
     gap: 8px;
     background: rgba(255, 255, 255, 0.2);
     color: white;
     text-decoration: none;
     padding: 10px 20px;
     border-radius: 25px;
     border: 2px solid rgba(255, 255, 255, 0.3);
     transition: all 0.4s ease 0.2s;
     transform: translateX(-30px);
     backdrop-filter: blur(10px);
 }

 .funky-item:hover .portfolio-link {
     transform: translateX(0);
     background: rgba(255, 255, 255, 0.3);
     border-color: rgba(255, 255, 255, 0.5);
 }

 .portfolio-link:hover {
     background: rgba(255, 255, 255, 0.4);
     transform: translateY(-2px);
 }

 .arrow-icon {
     width: 16px;
     height: 16px;
     transition: transform 0.3s ease;
 }

 .portfolio-link:hover .arrow-icon {
     transform: translateX(3px);
 }

 /* Mobile: Single column */
 @media (max-width: 768px) {
     .funky-grid {
         grid-template-columns: 1fr;
     }

     .overlay-title {
         font-size: 1.3rem;
     }

     .overlay-text {
         font-size: 0.9rem;
     }

     .portfolio-link {
         padding: 8px 16px;
         font-size: 0.9rem;
     }
 }


 /* team  */
 .team-section {
     padding: 80px 0;
     background-color: #f8f9fa;
 }

 .team-title {
     font-size: 3rem;
     font-weight: 300;
     color: #6c757d;
     margin-bottom: 2rem;
 }

 .team-description {
     color: #adb5bd;
     font-size: 1.1rem;
     line-height: 1.8;
     margin-bottom: 3rem;
 }

 .team-member {
     transition: all 0.3s ease;
     opacity: 0;
     transform: translateX(50px);
     display: flex;
     flex-direction: column;
     justify-content: space-evenly;
 }

 .team-member.show {
     opacity: 1;
     transform: translateX(0);
 }

 .team-member img {
     width: 100%;
     height: 360px;
     object-fit: cover;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }

 .team-member h5 {
     margin-top: 0.5rem;
     font-weight: 600;
     color: #495057;
 }

 .team-member p {
     color: #6c757d;
     font-size: 0.9rem;
 }

 .nav-button {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background-color: #fd7e14;
     border: none;
     color: white;
     font-size: 1.2rem;
     margin-right: 10px;
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .nav-button:hover {
     background-color: #e8590c;
     transform: scale(1.05);
 }

 .nav-button:disabled {
     background-color: #dee2e6;
     cursor: not-allowed;
     transform: none;
 }

 .team-grid {
     min-height: 450px;
 }

 .team-counter {
     color: #6c757d;
     font-size: 0.9rem;
     margin-top: 1rem;
 }

 @media (max-width: 991.98px) {
     .team-title {
         font-size: 2.5rem;
     }

     .team-description {
         margin-bottom: 2rem;
     }

     .team-member img {
         height: 350px;
     }
 }

 @media (max-width: 767.98px) {
     .team-controls {
         margin-bottom: 2rem;
     }
 }



 /* pump fuel */

 .pump-fuel-section {
     max-width: 100dvw;
     background: var(--dark-bg);
     position: relative;
     overflow: hidden;
     padding: 0;
 }

 .slider-container {
     position: relative;
     width: 100%;
     overflow: hidden;
 }

 .slider-track {
     display: flex;
     transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     width: 200%;
 }

 .slide {
     flex: 0 0 50%;
     display: flex;
     flex-direction: column;
 }

 .slide-title {
     text-align: center;
     padding: 30px 0 20px 0;
     color: var(--dark-text);
     font-weight: 300;
     letter-spacing: 2px;
     background: var(--dark-bg);
     flex-shrink: 0;
 }

 .cards-container {
     padding: 0;
     overflow: hidden;
 }

 .letter-card {
     background: var(--dark-card);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     position: relative;
     overflow: hidden;
     border: 1px solid #404040;
     padding: 20px 15px;
     height: 70dvh;
     min-height: 300px;
 }

 .letter-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(229, 103, 52, 0.1), transparent);
     transition: left 0.6s ease;
 }

 .letter-card:hover::before {
     left: 100%;
 }

 .letter-card:hover {
     background: var(--primary-color);
     color: var(--secondary-color);
     transform: scale(1.02);
     z-index: 10;
 }

 .letter {
     font-size: 3rem;
     font-weight: 900;
     color: var(--primary-light);
     margin-bottom: 12px;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
     transition: all 0.3s ease;
 }

 .letter-card:hover .letter {
     color: var(--secondary-color);
     transform: scale(1.1);
     text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
 }

 .letter-title {
     color: var(--primary-light);
     font-weight: 600;
     margin-bottom: 8px;
     transition: all 0.3s ease;
     font-size: 1.1rem;
 }

 .letter-card:hover .letter-title {
     color: var(--secondary-color);
 }

 .letter-description {
     color: var(--dark-text);
     font-weight: 400;
     opacity: 0.8;
     transition: all 0.3s ease;
     line-height: 1.3;
     text-align: center;
     font-size: 0.9rem;
 }

 .letter-card:hover .letter-description {
     color: var(--secondary-color);
     opacity: 1;
 }

 .slide-indicators {
     position: absolute;
     bottom: 20px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 15px;
     z-index: 100;
 }

 .slide-indicator {
     width: 60px;
     height: 4px;
     background: rgba(229, 103, 52, 0.3);
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .slide-indicator.active {
     background: var(--primary-color);
     transform: scaleY(2);
 }

 /* Remove Bootstrap gaps */
 .row {
     --bs-gutter-x: 0;
     --bs-gutter-y: 0;
 }

 .col-lg-3,
 .col-md-6,
 .col-12 {
     padding: 0;
 }

 .team-grid .col-md-4 {
     padding: 0px 12px;
 }

 /* Ensure proper height distribution on large screens */
 @media (min-width: 992px) {
     .letter-card {
         height: 70dvh;
         min-height: 300px;
     }
 }

 /* Medium screens - 2x2 grid */
 @media (min-width: 768px) and (max-width: 991px) {
     .letter-card {
         height: 70dvh;
         min-height: 300px;
     }

     .letter {
         font-size: 2.5rem;
     }
 }

 /* Small screens - 1x4 grid */
 @media (max-width: 767px) {
     .slide-title {
         padding: 20px 0 15px 0;
     }

     .letter-card {
         height: 70dvh;
         min-height: 300px;
         padding: 15px 10px;
     }

     .letter {
         font-size: 2.2rem;
         margin-bottom: 8px;
     }

     .letter-title {
         font-size: 1rem;
         margin-bottom: 6px;
     }

     .letter-description {
         font-size: 0.85rem;
         line-height: 1.2;
     }

     .slide-indicators {
         bottom: 15px;
     }
 }

 /* stats and testimonial */

 .testimonials-section {
     padding-bottom: 0px;
     background-color: var(--secondary-color);
 }

 .testimonials-section-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 60px;
 }

 .testimonials-section-title {
     font-size: 2.5rem;
     font-weight: 700;
     color: var(--text-color);
     margin: 0;
     font-family: 'Poppins', sans-serif;
 }

 .testimonials-nav-buttons {
     display: flex;
     gap: 10px;
 }

 .testimonials-slider-nav-btn {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background-color: var(--primary-color);
     border: none;
     color: var(--secondary-color);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     font-family: 'Poppins', sans-serif;
 }

 .testimonials-slider-nav-btn:hover {
     background-color: var(--text-color);
     transform: translateY(-2px);
 }

 .testimonials-slider-nav-btn:disabled {
     background-color: var(--accent-color);
     color: var(--text-color);
     cursor: not-allowed;
     transform: none;
 }

 .testimonials-slider-container {
     position: relative;
     overflow: hidden;
     margin-bottom: 80px;
 }

 .testimonials-slider-track {
     display: flex;
     transition: transform 0.5s ease-in-out;
     gap: 30px;
 }

 .testimonials-card {
     flex: 0 0 auto;
     background: var(--secondary-color);
     border-radius: 20px;
     padding: 40px 30px;
     text-align: center;
     border: 2px solid var(--accent-color);
     transition: all 0.3s ease;
     position: relative;
 }

 .testimonials-card:hover {
     border-color: var(--primary-color);
 }

 .testimonials-profile-image {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     margin: 0 auto 20px;
     position: relative;
     overflow: hidden;
     border: 3px solid var(--accent-color);
 }

 .testimonials-profile-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .testimonials-quote-icon {
     position: absolute;
     bottom: -5px;
     right: -5px;
     width: 30px;
     height: 30px;
     background-color: var(--primary-color);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 3px solid var(--secondary-color);
 }

 .testimonials-card-name {
     font-size: 1.25rem;
     font-weight: 600;
     color: var(--text-color);
     margin-bottom: 15px;
     font-family: 'Poppins', sans-serif;
 }

 .testimonials-card-text {
     font-size: 1rem;
     line-height: 1.6;
     color: var(--text-color);
     max-width: 300px;
     margin: 0 auto;
     font-family: 'Poppins', sans-serif;
     font-weight: 400;
 }

 .stats-section {
     background-color: var(--primary-color);
     padding: 60px 0;
     color: var(--secondary-color);
 }

 .stats-section-container {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 40px;
     text-align: center;
 }

 .stats-section-item {
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .stats-section-icon {
     width: 60px;
     height: 60px;
     margin-bottom: 20px;
     fill: var(--secondary-color);
 }

 .stats-section-number {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 10px;
     font-family: 'Poppins', sans-serif;
     color: var(--secondary-color);
     font-variant-numeric: tabular-nums;
     min-width: 120px;
     display: inline-block;
 }

 .stats-section-label {
     font-size: 1.1rem;
     font-weight: 500;
     font-family: 'Poppins', sans-serif;
     color: var(--secondary-color);
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .testimonials-section-title {
         font-size: 2rem;
     }

     .testimonials-section-header {
         flex-direction: column;
         gap: 20px;
         text-align: center;
     }

     .testimonials-card {
         padding: 30px 20px;
     }

     .stats-section-container {
         grid-template-columns: repeat(2, 1fr);
         gap: 30px;
     }

     .stats-section-number {
         font-size: 2rem;
     }
 }

 @media (max-width: 576px) {
     .stats-section-container {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
     }

     .stats-section-number {
         font-size: 1.8rem;
         min-width: 100px;
     }
 }

.logo-marquee {
    overflow: hidden;
    white-space: nowrap;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    height: 110px; /* Adjusted for 75px image height + padding */
    display: flex;
    align-items: center;
}

.logo-track {
    display: flex;
    animation: scroll 36s linear infinite;
    gap: 0;
    /* No fixed width needed - let it flow naturally */
}

.logo-item {
    flex-shrink: 0;
    height: 95px; /* Adjusted for 75px image + padding */
    width: 150px; /* Adjusted for 150px image + padding */
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    /*border: 1px solid #e9ecef;*/
    border-right: none; /* Remove right border to eliminate gaps */
    margin: 0; /* Remove all margins */
    box-sizing: border-box;
}

.logo-item:last-child {
    /*border-right: 1px solid #e9ecef;  */
}

.logo-item img {
    height: 75px;
    width: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Move exactly half the track width for seamless loop */
    }
}

.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}
 /* client section */
 /*.client-marquee-section {*/
 /*    background-color: var(--accent-color);*/
     /* Removed padding to make section flush */
 /*    overflow: hidden;*/
 /*    position: relative;*/
 /*    margin: 0;*/
     /* Ensure no margin */
 /*}*/

 /*.marquee-container {*/
 /*    width: 100%;*/
 /*    overflow: hidden;*/
 /*    position: relative;*/
 /*    margin: 0;*/
     /* Remove any margin */
 /*    padding: 0;*/
     /* Remove any padding */
 /*}*/

 /*.marquee-track {*/
 /*    display: flex;*/
 /*    animation: marquee 30s linear infinite;*/
 /*    width: calc(200% + 40px);*/
 /*    margin: 0;*/
     /* Remove any margin */
 /*    padding: 0;*/
     /* Remove any padding */
 /*}*/

 /*.marquee-content {*/
 /*    display: flex;*/
 /*    align-items: center;*/
 /*    justify-content: space-around;*/
 /*    min-width: 50%;*/
 /*    padding: 0 20px;*/
     /* Keep horizontal padding only */
 /*    margin: 0;*/
     /* Remove vertical margins */
 /*    height: 200px;*/
     /* Set fixed height for flush alignment */
 /*}*/

 /*.client-logo {*/
 /*    height: 200px;*/
     /* Increased from 80px to 200px */
 /*    width: auto;*/
 /*    margin: 0 40px;*/
     /* Keep horizontal margins, remove vertical */
 /*    opacity: 0.7;*/
 /*    transition: all 0.3s ease;*/
 /*    filter: grayscale(100%);*/
 /*    object-fit: contain;*/
 /*    mix-blend-mode: color-burn*/
         /* Hides white/light backgrounds */
 /*}*/

 /*.client-logo:hover {*/
 /*    opacity: 1;*/
 /*    filter: grayscale(0%);*/
 /*    transform: scale(1.1);*/
 /*}*/

 /*@keyframes marquee {*/
 /*    0% {*/
 /*        transform: translateX(0);*/
 /*    }*/

 /*    100% {*/
 /*        transform: translateX(-50%);*/
 /*    }*/
 /*}*/

 /*.marquee-track:hover {*/
 /*    animation-play-state: paused;*/
 /*}*/

 /*@media (max-width: 768px) {*/
 /*    .client-marquee-section {*/
         /* Removed padding to keep section flush */
 /*        margin: 0;*/
 /*    }*/

 /*    .marquee-content {*/
 /*        height: 180px;*/
         /* Slightly smaller for mobile but still large */
 /*    }*/

 /*    .client-logo {*/
 /*        height: 180px;*/
         /* Increased from 60px to 180px */
 /*        margin: 0 25px;*/
         /* Keep horizontal margins only */
 /*    }*/

 /*    .marquee-track {*/
 /*        animation-duration: 25s;*/
 /*    }*/
 /*}*/

 /*@media (max-width: 480px) {*/
 /*    .marquee-content {*/
 /*        height: 160px;*/
         /* Minimum requested height */
 /*    }*/

 /*    .client-logo {*/
 /*        height: 160px;*/
         /* Increased from 50px to 160px - meets minimum requirement */
 /*        margin: 0 20px;*/
         /* Keep horizontal margins only */
 /*    }*/

 /*    .marquee-track {*/
 /*        animation-duration: 20s;*/
 /*    }*/
 /*}*/

 /* contact section */
 .contact-section {
     height: 80vh;
     min-height: 600px;
     display: flex;
     align-items: stretch;
     padding: 0rem;
 }

 .image-side {
     flex: 1;
     background-image: url('/placeholder.svg?height=500&width=600');
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
 }

 .form-side {
     flex: 1;
     background-color: var(--primary-color);
     padding: 40px 50px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     color: var(--secondary-color);
 }

 .contact-title {
     font-weight: 300;
     margin-bottom: 15px;
     line-height: 1.2;
 }

 .contact-title strong {
     font-weight: 700;
 }

 .contact-subtitle {
     opacity: 0.9;
     margin-bottom: 30px;
     line-height: 1.5;
 }

 .form-group {
     margin-bottom: 20px;
     position: relative;
 }

 .form-label {
     display: block;
     font-weight: 500;
     margin-bottom: 6px;
     color: var(--secondary-color);
 }

 .form-control {
     width: 100%;
     padding: 12px 0;
     background: transparent;
     border: none;
     border-bottom: 2px solid rgba(255, 255, 255, 0.3);
     color: var(--secondary-color);
     transition: all 0.3s ease;
     font-family: inherit;
 }

 .form-control:focus {
     outline: none;
     border-bottom-color: var(--secondary-color);
 }

 .form-control::placeholder {
     color: rgba(255, 255, 255, 0.6);
 }

 textarea.form-control {
     min-height: 80px;
     resize: vertical;
     padding-top: 12px;
 }

 .submit-btn {
     background: transparent;
     color: var(--secondary-color);
     border: 2px solid var(--secondary-color);
     padding: 12px 30px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-top: 15px;
     position: relative;
     overflow: hidden;
 }

 .submit-btn:hover {
     background-color: var(--secondary-color);
     color: var(--primary-color);
 }

 .submit-btn:disabled {
     opacity: 0.7;
     cursor: not-allowed;
 }

 .btn-spinner {
     display: none;
     width: 16px;
     height: 16px;
     border: 2px solid rgba(255, 255, 255, 0.3);
     border-top-color: var(--secondary-color);
     border-radius: 50%;
     margin-left: 8px;
     animation: spin 1s linear infinite;
 }

 .sending-state .btn-spinner {
     display: inline-block;
 }

 @keyframes spin {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 .response-popup {
     display: none;
     position: fixed;
     top: 20px;
     right: 20px;
     background: var(--secondary-color);
     color: var(--text-color);
     padding: 20px;
     border-radius: 8px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     z-index: 9999;
     opacity: 0;
     transition: opacity 0.3s ease;
     max-width: 350px;
 }

 .response-popup.show {
     opacity: 1;
 }

 .response-popup.success {
     border-left: 4px solid #28a745;
 }

 .response-popup.error {
     border-left: 4px solid #dc3545;
 }

 .close-popup {
     background: transparent;
     border: none;
     color: var(--text-color);
     cursor: pointer;
     float: right;
     line-height: 1;
     padding: 0;
     margin-left: 15px;
 }

 @media (max-width: 768px) {
     .contact-section {
         height: auto;
         min-height: 500px;
         flex-direction: column;
     }

     .image-side {
         display: none;
     }

     .form-side {
         padding: 40px 30px;
         min-height: 500px;
     }

     .contact-subtitle {
         margin-bottom: 25px;
     }

     .form-group {
         margin-bottom: 18px;
     }
 }

 @media (max-width: 480px) {
     .form-side {
         padding: 30px 20px;
     }

     .submit-btn {
         width: 100%;
         padding: 15px;
     }
 }





 /* Contact Cards Styling */
 .contact-card {
     background-color: var(--secondary-color);
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     overflow: hidden;
     height: 100%;
 }

 .contact-card:hover {
     transform: translateY(-5px);
     /*box-shadow: 0 10px 25px rgba(229, 103, 52, 0.2); */
 }

 .card-header {
     display: flex;
     align-items: center;
     padding: 1.5rem 1.5rem 0.5rem;
     background-color: transparent;
     border-bottom: none;
 }

 .icon-box {
     width: 50px;
     height: 50px;
     min-width: 50px;
     border-radius: 50%;
     /*background-color: var(--accent-color);*/
     display: flex;
     align-items: center;
     justify-content: center;
     /*box-shadow: 0 3px 10px rgba(229, 103, 52, 0.15); */
     margin-right: 15px;
 }

 .icon-box i {
     font-size: 1.25rem;
     color: var(--primary-color);
 }
 .col-lg-4{
     width: calc(33% - 1rem);
 }

 .card-header h4 {
     margin: 0;
     font-size: 1.25rem;
     font-weight: 600;
     padding-bottom: 0.5rem;
     border-bottom: 1px solid var(--accent-color);
     width: 100%;
     color: var(--text-color);
 }

 .card-body {
     padding: 1.5rem;
 }

 /* Links Styling */
 .location-link,
 .email-link,
 .phone-link {
     color: var(--text-color);
     text-decoration: none;
     transition: color 0.3s ease;
     display: inline-block;
 }

 .location-link:hover,
 .email-link:hover,
 .phone-link:hover {
     color: var(--primary-color);
 }

 .hours {
     color: var(--text-color);
     opacity: 0.7;
     margin-top: 10px;
 }

 /* Social Links */
 .social-links {
     display: flex;
     gap: 12px;
     margin-top: 20px;
 }

 .social-links a {
     text-decoration: none;
     width: 40px;
     height: 40px;
     background-color: var(--primary-color);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--secondary-color);
     font-size: 1rem;
     transition: all 0.3s ease;
 }

 .social-links a:hover {
     background-color: var(--primary-light);
     transform: translateY(-3px);
 }

 /* Responsive Adjustments */
 @media (max-width: 767.98px) {
     .contact-card {
         margin-bottom: 1.5rem;
     }
 }


 .contact-section {
     height: 80vh;
     min-height: 600px;
     display: flex;
     align-items: stretch;
     padding: 0rem;
 }

 .image-side {
     flex: 1;
     background-image: url('/placeholder.svg?height=500&width=600');
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
 }

 .form-side {
     flex: 1;
     background-color: var(--primary-color);
     padding: 40px 50px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     color: var(--secondary-color);
 }

 .contact-title {
     font-weight: 300;
     margin-bottom: 15px;
     line-height: 1.2;
 }

 .contact-title strong {
     font-weight: 700;
 }

 .contact-subtitle {
     opacity: 0.9;
     margin-bottom: 30px;
     line-height: 1.5;
 }

 .form-group {
     margin-bottom: 20px;
     position: relative;
 }

 .form-label {
     display: block;
     font-weight: 500;
     margin-bottom: 6px;
     color: var(--secondary-color);
 }

 .form-control {
     width: 100%;
     padding: 12px 0;
     background: transparent;
     border: none;
     border-bottom: 2px solid rgba(255, 255, 255, 0.3);
     color: var(--secondary-color);
     transition: all 0.3s ease;
     font-family: inherit;
 }

 .form-control:focus {
     outline: none;
     border-bottom-color: var(--secondary-color);
 }

 .form-control::placeholder {
     color: rgba(255, 255, 255, 0.6);
 }

 textarea.form-control {
     min-height: 80px;
     resize: vertical;
     padding-top: 12px;
 }

 .submit-btn {
     background: transparent;
     color: var(--secondary-color);
     border: 2px solid var(--secondary-color);
     padding: 12px 30px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-top: 15px;
     position: relative;
     overflow: hidden;
 }

 .submit-btn:hover {
     background-color: var(--secondary-color);
     color: var(--primary-color);
 }

 .submit-btn:disabled {
     opacity: 0.7;
     cursor: not-allowed;
 }

 .btn-spinner {
     display: none;
     width: 16px;
     height: 16px;
     border: 2px solid rgba(255, 255, 255, 0.3);
     border-top-color: var(--secondary-color);
     border-radius: 50%;
     margin-left: 8px;
     animation: spin 1s linear infinite;
 }

 .sending-state .btn-spinner {
     display: inline-block;
 }

 @keyframes spin {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 .response-popup {
     display: none;
     position: fixed;
     top: 20px;
     right: 20px;
     background: var(--secondary-color);
     color: var(--text-color);
     padding: 20px;
     border-radius: 8px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     z-index: 9999;
     opacity: 0;
     transition: opacity 0.3s ease;
     max-width: 350px;
 }

 .response-popup.show {
     opacity: 1;
 }

 .response-popup.success {
     border-left: 4px solid #28a745;
 }

 .response-popup.error {
     border-left: 4px solid #dc3545;
 }

 .close-popup {
     background: transparent;
     border: none;
     color: var(--text-color);
     cursor: pointer;
     float: right;
     line-height: 1;
     padding: 0;
     margin-left: 15px;
 }

 @media (max-width: 768px) {
     .contact-section {
         height: auto;
         min-height: 500px;
         flex-direction: column;
     }

     .image-side {
         display: none;
     }

     .form-side {
         padding: 40px 30px;
         min-height: 500px;
     }

     .contact-subtitle {
         margin-bottom: 25px;
     }

     .form-group {
         margin-bottom: 18px;
     }
 }

 @media (max-width: 480px) {
     .form-side {
         padding: 30px 20px;
     }

     .submit-btn {
         width: 100%;
         padding: 15px;
     }
 }