:root {
     --primary-color: #f15a29; /* Purple */
     --text-color: #333;
     --light-color: #fff;
     --dark-color: #011935;
     --transition: all 0.3s ease;
}

body {
     font-family: 'Montserrat', sans-serif;
     margin: 0;
     padding: 0;
}
span.special {
    border-left: 5px solid #011935;
    padding: 6px 10px;
    width: fit-content;
    background: #ffffff4d;
    font-size: 20px;
    text-transform: capitalize;
}

.btn-get-started {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: #ff6b00; /* Orange accent color - change as needed */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-get-started:hover {
    background-color: transparent;
    border-color: white;
    color: white;
}


/* Header Styles */
.header {
     background-color: var(--light-color);
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     position: sticky;
     top: 0;
     z-index: 1000;
}

.nav-container {
     display: flex;
     justify-content: space-between;
     align-items: stretch;
     margin: 0 auto;
     height: 120px;
}

/* Logo Section - Left */
.logo-section {
     flex: 0 0 200px;
     background-color: #ffffff;
     display: flex;
     align-items: center;
     padding: 0 20px;
}

.logo-img {
     width: 100%;
     height: auto;
     transition: var(--transition);
}

/* Navigation Section - Middle */
.nav-section {
     flex: 1;
     display: flex;
     justify-content: flex-end;
     align-items: center;
     padding-right: 20px;
     background: #011935;
}

.nav-menu {
     display: flex;
     list-style: none;
     margin: 0;
     padding: 0;
}

.menu-item {
     margin-left: 30px;
     position: relative;
}

.menu-item a {
     text-decoration: none;
     color: #f15a29;
     font-weight: 600;
     font-size: 15px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     transition: var(--transition);
     padding: 5px 0;
     position: relative;
}

.menu-item a:hover {
     color: #ffffff;
}

.menu-item a::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     background: var(--primary-color);
     bottom: 0;
     left: 0;
     transition: var(--transition);
}

.menu-item a:hover::after {
     width: 100%;
}

/* CTA Section - Right */
.cta-section {
     flex: 0 0 200px;
     background-color: #f15a29;
     display: flex;
     justify-content: center;
     align-items: center;
}

.call-btn {
     background-color: transparent;
     color: var(--light-color);
     padding: 12px 25px;
     border: none;
     border-radius: 4px;
     text-decoration: none;
     font-weight: 600;
     font-size: 15px;
     transition: var(--transition);
     display: inline-flex;
     align-items: center;
     text-transform: uppercase;
}

.cta-section:hover {
    background-color: #cb3200;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.call-btn i {
     margin-right: 8px;
     width: 18px;
     height: 18px;
     stroke-width: 2.5;
}




/* Hero Section Starts */
.hero-slider {
     position: relative;
     width: 100%;
     height: 88vh;
     min-height: 600px;
     overflow: hidden;
}

.hero-slide {
     position: absolute;
     width: 100%;
     height: 100%;
     opacity: 0;
     transition: var(--transition);
     display: flex;
     align-items: center;
}

.hero-slide.active {
     opacity: 1;
     z-index: 1;
}

.slide-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     z-index: -1;
}

.slide-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgb(0 0 0 / 37%);
     z-index: -1;
}

.text-section {
     width: 100%;
     max-width: 1600px;
     margin: 0 auto;
     padding: 0 20px;
     color: var(--secondary-color);
     transform: translateY(50px);
     transition: var(--transition);
     opacity: 0;
}

.active .text-section {
     transform: translateY(0);
     opacity: 1;
     transition-delay: 0.3s;
}

.text-section h1 {
     font-size: 4.5rem;
     font-weight: 700;
     margin-bottom: 20px;
     color: #ffffff;
     text-transform: uppercase;
     line-height: 1.2;
}

.text-section h1 span {
     display: block;
     color: var(--primary-color);
}

.text-section p {
     font-size: 1.2rem;
     max-width: 600px;
     margin-bottom: 30px;
     line-height: 1.6;
     color: white;
     font-weight: 600;
}

/* Slider Controls */
.slider-controls {
     position: absolute;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     z-index: 10;
}

.slider-dot {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background: rgba(1, 25, 53, 0.5);
     margin: 0 5px;
     cursor: pointer;
     transition: var(--transition);
}

.slider-dot.active {
     background: var(--primary-color);
     transform: scale(1.2);
}

.slider-arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 50px;
     height: 50px;
     background: rgba(255, 255, 255, 0.7);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     z-index: 10;
     transition: var(--transition);
     color: var(--secondary-color);
}

.slider-arrow:hover {
     background: var(--primary-color);
     color: white;
}

.slider-arrow.prev {
     left: 20px;
}

.slider-arrow.next {
     right: 20px;
}

/* About Us Section Starts */

/* About Us Section */
.about-section {
    padding: 100px 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.about-flex {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Content Column */
.about-flex .column:first-child {
    flex: 1;
}

.about-flex .content h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: var(--primary-color);
    line-height: 1.2;
}

.about-flex .content h1 span {
    color: var(--primary-color);
    display: inline-block;
}

.about-flex .content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
}

/* Image Column */
.about-flex .column:last-child {
    flex: 1;
    position: relative;
}

.flex-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.vertical-image {
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.vertical-image:first-child {
    transform: translateY(-30px);
    background-image: url('../images/content/about/1.jpg');
    background-size: cover;
    background-position: center;
}

.vertical-image:last-child {
    transform: translateY(30px);
    background-image: url('../images/content/about/2.jpg');
    background-size: cover;
    background-position: center;
}

/* Decorative Elements */
.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 1;
}

/* Hover Effects */
.vertical-image:hover {
    transform: translateY(0) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Services Section Style Starts */
.services {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.service-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--dark-color);
    position: relative;
}

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

.grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-card {
    background: var(--dark-color);
    border-radius: 0;
    overflow: visible;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    padding-top: 40px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(241, 90, 41, 0.2);
}

.service-heading {
    padding: 15px;
    text-align: center;
    color: var(--light-color);
    font-size: 22px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    background: var(--dark-color);
    margin: 0 20px;
    border-radius: 5px;
}

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    margin: 0 -20px;
    position: relative;
    z-index: 999;
    transition: all 0.4s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
    position: relative;
    z-index: 2;
    background: #011935;
}

.service-content p {
    color: var(--light-color);
    line-height: 1.6;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.service-btn {
    display: inline-block;
    padding: 12px 0px;
    background-color: #f15a29;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    opacity: 0;
    width: 43%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(241, 90, 41, 0.3);
}

.service-card:hover .service-btn {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    bottom: 65px;
}

.service-card:hover .service-content p {
    margin-bottom: 30px;
}

/* Decorative Elements */
.services::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 1;
}


/* Advanced Gallery Section Styles */
.portfolio-gallery {
    padding: 80px 0;
    background-color: #011935;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-header p {
    color: var(--light-color);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.filter-btn {
    padding: 10px 20px;
    background: #ffffff;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
       transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    aspect-ratio: 4/3;
    transition: all 0.4s ease;
}
.gallery-item.hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 25, 53, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .item-overlay,
.gallery-item:hover .project-info {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.project-info {
    text-align: center;
    padding: 20px;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.project-info p {
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.view-btn {
    padding: 8px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.view-btn:hover {
    background: white;
    color: var(--primary-color);
}

/* Modal Styles */
/* Enhanced Modal Styles */
.testimonial-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 25, 53, 0.95); /* Using your dark color with transparency */
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 50px rgba(241, 90, 41, 0.3); /* Using your primary color in shadow */
    border: 0;
    transform: scale(0.95);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.testimonial-modal.show .modal-content {
    transform: scale(1);
    opacity: 1;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: none;
}

.close-btn:hover {
    background: #e04a1a; /* Slightly darker shade of your primary color */
    transform: rotate(90deg);
}

.modal-body {
    padding: 50px;
    overflow-y: auto;
    display: block;
}

/* Project Images Section */
.project-images {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.main-image {
    position: absolute;
    top: 0;
    width: 100%;
    height: 360px;
    object-fit: contain;
    z-index: 2;
}
.thumbnail-container {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover, .thumbnail.active {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

/* Project Description Section */
.project-description h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    position: relative;
}

.project-description h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.location {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location::before {
    content: '\1F4CD';
}

.client-testimonial {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin: 25px 0;
    position: relative;
}

.client-testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 3rem;
    color: rgba(241, 90, 41, 0.1);
    font-family: serif;
    line-height: 1;
}

.client-testimonial p {
    font-style: italic;
    color: #444;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.client-name {
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 10px;
    font-style: normal;
}

.project-specs {
    margin-top: 30px;
}

.project-specs h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
}

.project-specs ul {
    list-style: none;
    padding: 0;
}

.project-specs li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #555;
}
.project-specs li::before {
    content: '•';
    color: #e74c3c;
    font-weight: bold;
    margin-right: 8px;
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
}

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

.section-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Contact Form Styles */
.contact-form {
    display: grid;
    gap: 25px;
}

.form-group {
    position: relative;
    padding-top: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    transition: all 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #888;
    font-weight: 500;
    transition: color 0.18s;
}

.form-group .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: transparent;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    color: #f15a29;
    font-size: 0.95rem;
}

.form-group input:focus ~ .underline,
.form-group select:focus ~ .underline,
.form-group textarea:focus ~ .underline {
    width: 100%;
}

/* Select dropdown styling */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 1em;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #e04a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 90, 41, 0.3);
}

/* Contact Info Styles */
.contact-info-container {
    background: var(--dark-color);
    padding: 40px;
    border-radius: 8px;
    color: white;
    height: fit-content;
}

.contact-info-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.contact-info-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.contact-info-box > p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-method {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    background: rgba(241, 90, 41, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--primary-color);
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-details a, .contact-details address {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-style: normal;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.business-hours {
    margin-top: 40px;
}

.business-hours h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.business-hours ul {
    list-style: none;
    padding: 0;
}

.business-hours li {
    margin-bottom: 8px;
    display: flex;
}

.business-hours span {
    display: inline-block;
    width: 120px;
    font-weight: 500;
}

.social-links {
    margin-top: 40px;
}

.social-links h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

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

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

/* Map Styles */
.map-container {
    margin-top: 80px;
    width: 100%;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* Footer Styles */
.main-footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 0;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    width: 125px;
    margin-bottom: 0;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

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

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-services li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after,
.footer-services a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    color: white;
}

.footer-links a:hover::after,
.footer-services a:hover::after {
    width: 100%;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary-color);
    width: 18px;
    height: 18px;
}

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

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary-color);
}

/* Newsletter & CTA Section Styles */
.newsletter-cta {
    background-color: #f15a29;
    color: white;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cta-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(241, 90, 41, 0.1);
}

.decor-circle.decor-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}


.decor-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 260px solid rgba(241, 90, 41, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(30deg);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.input-group input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    font-size: 1rem;
    outline: none;
}

.input-group input::placeholder {
    color: #999;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 30px;
    background: #011935;
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #e04a1a;
}

.cta-btn i {
    width: 18px;
    height: 18px;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.form-note i {
    width: 16px;
    height: 16px;
}

.secondary-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.secondary-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.phone-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-cta:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(241, 90, 41, 0.3);
}

.phone-cta i {
    width: 18px;
    height: 18px;
}

.outline-btn {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid var(--primary-color);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.outline-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(241, 90, 41, 0.3);
}


/* Testimonials Section Styles */
.testimonials-section {
    background: url('../images/banners/testimonial.jpg'), #01193545;
    padding: 80px 0;
    background-blend-mode: overlay;
    background-size: cover;
    position: relative;
    border: ;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    color: #ffffff;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 600;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.rating {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    gap: 3px;
}

.star {
    width: 18px;
    height: 18px;
    fill: var(--primary-color);
    stroke: none;
}

.testimonial-text {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: -10px;
    font-size: 3rem;
    color: rgba(241, 90, 41, 0.1);
    font-family: serif;
    line-height: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 0;
}

.client-details h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.client-details p {
    color: #666;
    font-size: 0.9rem;
}

.testimonials-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #eee;
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

.testimonials-cta p {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #e04a1a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(241, 90, 41, 0.3);
}


/* Add these to your existing CSS */

/* GSAP Animation Styles */
[gsap-reveal] {
    opacity: 0;
}

/* Smooth transitions for all animated elements */
.header, .hero-slide, .about-section, .services, 
.portfolio-gallery, .testimonials-section, 
.contact-section, .newsletter-cta, .main-footer {
    will-change: transform, opacity;
}

/* Service card hover state */
.service-card {
    transition: box-shadow 0.3s ease-out;
    will-change: transform, box-shadow;
}

/* Gallery item overlay */
.gallery-item .item-overlay {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.gallery-item .project-info {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease-out;
}

/* Form input animations */
.form-group label {
    transition: color 0.2s ease-out;
}

.form-group .underline {
    transition: background-color 0.2s ease-out;
}

/* Decorative elements for newsletter */
.decor-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    z-index: 0;
}

.decor-1 {
    width: 150px;
    height: 150px;
    top: -50px;
    left: -50px;
}

.decor-2 {
    width: 100px;
    height: 100px;
    bottom: -30px;
    right: -30px;
}

.decor-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid rgba(255,255,255,0.05);
    transform: rotate(45deg);
    right: 100px;
    top: 50%;
    z-index: 0;
}
.project-details {
    height: 550px;
}

.footer-bottom a {
    color: #f15a29;
    text-decoration: none;
    font-weight: 600;
}
.cta-content {
    position: relative;
    z-index: 1;
}
/* Add this to your CSS */
[data-scroll] {
  will-change: transform, opacity;
}



input.wpcf7-form-control {
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    transition: all 0.3s ease;
}

textarea.wpcf7-form-control {
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    transition: all 0.3s ease;
    min-height: 100px;
}

.wpcf7-form input[type="submit"], .wpcf7-form button {
    background: #e94d1a;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.wpcf7-form input[type="submit"]:hover, .wpcf7-form button:hover {
    background: #cb3200;
}

/* Advanced Contact Form 7 Styles */
.wpcf7-form {
    display: grid;
    gap: 0;
    background: transparent;
    border-radius: 8px;
    box-shadow: none;
    padding: 16px 0;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}
.wpcf7-form .wpcf7-form-control-wrap {
    position: relative;
    margin-bottom: 20px;
}
.wpcf7-form input.wpcf7-form-control,
.wpcf7-form textarea.wpcf7-form-control {
    width: 100%;
    padding: 14px 0 6px 0;
    font-size: 1rem;
    border: none;
    border-bottom: 1.5px solid #e0e0e0;
    background: transparent;
    transition: border-color 0.2s;
    color: #011935;
    outline: none;
    box-shadow: none;
    margin-bottom: 0;
}

.wpcf7-form select {
    width: 100%;
    padding: 14px 0 6px 0;
    font-size: 1rem;
    border: none;
    border-bottom: 1.5px solid #e0e0e0;
    background: transparent;
    color: #011935;
    margin-bottom: 0;
    transition: border-color 0.2s;
}
.wpcf7-form select:focus {
    border-bottom: 1.5px solid #f15a29;
    outline: none;
}
.wpcf7-form input.wpcf7-form-control:focus,
.wpcf7-form textarea.wpcf7-form-control:focus {
    border-bottom: 1.5px solid #f15a29;
}
.wpcf7-form label {
    display: block;
    margin-bottom: 0;
    font-size: 1rem;
    color: #f15a29;
    font-weight: 500;
    transition: color 0.18s;
}
.wpcf7-form input.wpcf7-form-control:focus + label,
.wpcf7-form input.wpcf7-form-control:not(:placeholder-shown) + label,
.wpcf7-form textarea.wpcf7-form-control:focus + label,
.wpcf7-form textarea.wpcf7-form-control:not(:placeholder-shown) + label {
    color: #f15a29;
    font-size: 0.95rem;
}
.wpcf7-form textarea.wpcf7-form-control {
    min-height: 100px;
    resize: vertical;
}
.wpcf7-form .wpcf7-not-valid {
    border-bottom: 1.5px solid #e94d1a !important;
    background: #fff0ee;
}
.wpcf7-form .wpcf7-response-output {
    margin: 0 0 16px 0;
    padding: 10px 14px;
    border-radius: 5px;
    font-size: 0.98rem;
    font-weight: 500;
}
.wpcf7-form .wpcf7-mail-sent-ok {
    background: #e6f9f0;
    color: #0a7d4d;
    border: 1px solid #0a7d4d;
}
.wpcf7-form .wpcf7-validation-errors {
    background: #fff0ee;
    color: #e94d1a;
    border: 1px solid #e94d1a;
}
.wpcf7-form input[type="submit"],
.wpcf7-form button {
    background: #f15a29;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(241,90,41,0.08);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    margin-top: 8px;
    letter-spacing: 0.3px;
}
.wpcf7-form input[type="submit"]:hover,
.wpcf7-form button:hover {
    background: #cb3200;
    box-shadow: 0 4px 12px rgba(241,90,41,0.13);
    transform: translateY(-1px) scale(1.01);
}
.wpcf7-form .wpcf7-spinner {
    margin-left: 8px;
}
.wpcf7-form .wpcf7-list-item {
    margin-right: 12px;
}
.wpcf7-form .wpcf7-list-item-label {
    font-size: 1rem;
    color: #011935;
}

/* Style for the newsletter form */
.newsletter-cta .cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.newsletter-cta .cta-content h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}

.newsletter-cta .cta-content p {
    font-size: 1rem;
    color: #fff;
    margin: 0;
    padding: 0;
}



.newsletter-cta .wpcf7-form p {
    display: flex;
    align-items: baseline;
    gap: 0;
    box-shadow: none;
    background: transparent;
    max-width: 600px;
    width: 100%;
}

.newsletter-cta .wpcf7-form input[type="email"] {
    padding: 18px 25px;
    border: 0;
    border-radius: 0;
    font-size: 1rem;
    background: white;
    border-top-left-radius: 50px;
    width: 280px;
    border-bottom-left-radius: 50px;
    color: #031930;
}

.newsletter-cta .wpcf7-form input[type="submit"] {
    background: #011935;
    color: #fff;
    position: relative;
    padding: 18px 30px;
    border: none;
    border-top-right-radius: 50px;
    z-index: 1;
    border-bottom-right-radius: 50px;
    margin: 0;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.newsletter-cta .wpcf7-form input[type="submit"]:hover {
    background: #f15a29;
}
.wpcf7-not-valid-tip {
    color: #011935;
    font-size: 1em;
    font-weight: normal;
    display: block;
    margin: 10px 0px;
}