:root {
            --primary-color: #fe6848;
            --secondary-color: #2c3e50;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
             --primary: #1a3a5f;
            --secondary: #2c5c8a;
            --accent: #e74c3c;
            --light: #f8f9fa;
            --dark: #343a40;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }
        
        /* Header Styles */
        .header {
            padding: 20px 0;
            transition: all 0.3s ease;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header.sticky {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 10px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
        }
        
        .header.sticky .navbar-brand img {
            height: 40px;
        }
        
        /* Brand */
.navbar-brand img {
    height: 60px;
    transition: all 0.3s ease;
}

/* Nav links hover effect */
.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}
.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    bottom: 0;
    transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--primary-color);
}
.navbar-nav .nav-link:hover:after, .navbar-nav .nav-link.active:after {
    width: 100%;
}

/* Custom Toggler */
.navbar-toggler.custom-toggler {
    width: 45px;
    height: 35px;
    position: fixed;      /* stay on top */
    top: 15px;            /* distance from top */
    right: 20px;          /* distance from right */
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    z-index: 1100;        /* above offcanvas */
}

.navbar-toggler.custom-toggler span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background-color: var(--dark-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar-toggler.custom-toggler span:nth-child(1) { top: 0; }
.navbar-toggler.custom-toggler span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.navbar-toggler.custom-toggler span:nth-child(3) { bottom: 0; }

/* Active animation (optional subtle movement) */
/* Toggler active animation */ .navbar-toggler.custom-toggler.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
 .navbar-toggler.custom-toggler.active span:nth-child(2) { opacity: 0; } 
 .navbar-toggler.custom-toggler.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); bottom: auto; top: 50%}

/* Offcanvas full screen without btn-close */
.offcanvas-top {
    height: 100vh !important;
    max-height: 100vh !important;
    width: 100%;
    top: 0;
    background-color: #fff;
    transition: transform 0.4s ease-in-out;
    z-index: 1050;
}

.offcanvas-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem;
}


.offcanvas-body .nav-link {
    font-size: 1rem;
    margin: 0 10px;
    
}
@media(max-width:993px)
{
    .offcanvas-body .nav-link {
    font-size: 2rem; margin: 10px 0;}
    .navbar-toggler.custom-toggler{box-shadow: none;}
}


        
        /* Hero Section */
        .hero-section {
            margin-top: 0;
            position: relative;
            width: 95%;
            margin-left: auto;
            margin-right: auto;
            display: block;
        }
        
        .carousel-item {
            /* height: 80vh; */
            min-height: 500px;
            background-position: center;
            background-size: cover;
            position: relative;
           
            
        }


         /* .carousel-item:before{position: absolute;
            content: '';
        left: 0;
    top: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,.5);
}
         */
        .carousel-caption {
            bottom: 100px;
            text-align: left;
            max-width: 600px;
            left: 10%;
            right: auto;
        }
        
        .carousel-caption h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .carousel-caption p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        .carousel-control-prev, .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .carousel-control-prev {
            left: 20px;
        }
        
        .carousel-control-next {
            right: 20px;
        }
        
        .carousel-control-prev:hover, .carousel-control-next:hover {
            opacity: 0.9;
        }
        
        .carousel-indicators {
            bottom: 40px;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
        }
        
        .rounded-bottom-corners {
            border-bottom-left-radius: 30px;
            border-bottom-right-radius: 30px;
            overflow: hidden;
        }
        
        /* Welcome Section */
        .welcome-section {
            padding: 100px 0;
            background-color: #fff;
        }
        
        .welcome-content {
            position: relative;
        }
        
        .welcome-text {
            padding-right: 30px;
        }
        
        .welcome-text h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--secondary-color);
            position: relative;
        }
        
        .welcome-text h1:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -10px;
            left: 0;
        }
        
        .welcome-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #666;
        }
        
        .welcome-image {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 20px;
        }
        
        .welcome-image img {
            transition: all 0.5s ease;
        }
        
        .welcome-image:hover img {
            transform: scale(1.05);
        }
        
        /* Services Section */
        .services-section {
            padding: 100px 0;
            background-color: #f8f9fa;
        }
        
        .services-content {
            margin-top: 50px;
        }
        
        .services-image {
            height: 100%;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .services-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .services-list {
            padding-left: 30px;
        }
        
        .services-list h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--secondary-color);
        }
        
        .services-list ul {
            list-style: none;
            padding: 0;
        }
        
        .services-list ul li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            font-size: 1.1rem;
        }
        
        .services-list ul li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: var(--primary-color);
            position: absolute;
            left: 0;
            top: 2px;
        }
        
        .btn-primary-custom {
    background: linear-gradient(135deg, #ff6a3d, #ff9d5c);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px; /* not full round */
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 106, 61, 0.25);
    margin-top: 20px;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #ff9d5c, #ff6a3d);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 106, 61, 0.45);
}

/* optional shine effect */
.btn-primary-custom::after {
    content: "";
    position: absolute;
    top: 0;
    left: -70%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    transition: 0.4s;
}

.btn-primary-custom:hover::after {
    left: 130%;
}


        /* Industrial Section */

        /* Industrial Section */
.industrial-section {
    background: url('../images/drs-total-solutions-pvt-ltd-services-background.jpg') fixed;
    background-size: cover;
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
}

.industrial-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.industrial-section .section-title h2{color:#fff}

.industrial-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.industrial-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-yellow);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

        
        /* Projects Section */
        .projects-section {
            padding: 100px 0;
        }
        
.projects-section .row {
    display: flex;
    flex-wrap: wrap;
}

.projects-section .col-md-6 {
    display: flex;
}

.project-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .project-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            background: #fff;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .project-image {
            height: 250px;
            overflow: hidden;
        }
        
        .project-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .project-card:hover .project-image img {
            transform: scale(1.1);
        }
        
        .project-content {
            padding: 20px;
        }
        
        .project-content h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--secondary-color);
        }
        
        .project-content p {
            color: #666;
            margin-bottom: 15px;
        }
        
        /* Clients Section */
        .clients-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .clients-slider {
            display: flex;
            align-items: center;
            justify-content: center;
            /* flex-wrap: wrap; */
        }
        
        .client-logo {
            margin: 10px;
            padding: 0px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 120px;
            width: 170px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .client-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .client-logo img {
            max-width: 100%;
            /* max-height: 70px; */
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .client-logo:hover img {
            filter: grayscale(0);
            opacity: 1;
        }
        
/*About us Page */

/* Banner Section */
        .banner {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/drs-total-solutions-pvt-ltd-about-banner.jpg');
            background-size: cover;
            background-position: center;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .banner-content {
            max-width: 800px;
            padding: 20px;
            animation: fadeIn 1.5s ease;
        }

        .banner h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .banner p {
            font-size: 20px;
            margin-bottom: 30px;
        }

        /* Breadcrumb */
        .breadcrumb {
            background-color: #f1f1f1;
            padding: 15px 0;
        }

        .breadcrumb ul {
            display: flex;
            list-style: none;
        }

        .breadcrumb ul li {
            margin-right: 10px;
            font-size: 14px;
        }

        .breadcrumb ul li:after {
            content: ">";
            margin-left: 10px;
            color: #777;
        }

        .breadcrumb ul li:last-child:after {
            content: "";
        }

        .breadcrumb a {
            text-decoration: none;
            color: #1a5276;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        .about-section {
    padding: 100px 0 60px 0;
}

.about-section.alt-bg {
    background-color: #f4f7fa;
}

.about-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

.about-wrapper.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.about-title {
    font-size: 38px;
    color: #0d6efd;
    margin-bottom: 20px;
    position: relative;
}

.about-title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 80px;
    height: 5px;
    background-color: #ffc107;
    border-radius: 2px;
}

.about-paragraph {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}
.about-list li{padding-bottom: 10px;}

.about-highlight {
    background-color: #e3f2fd;
    border-left: 6px solid #0d6efd;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    /* max-height: 400px; */
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: translateY(-10px);
}

.about-image:hover img {
    transform: scale(1.05);
}

.third-section .about-card {
    background-color: #e9f5ff;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
    }
    .about-image img {
        max-height: 300px;
    }
    .about-title {
        font-size: 28px;
    }
}

 .page-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 80px 0 60px;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }

        .service-item {
            background: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }
        .service-item:hover {
            transform: translateY(-5px);
        }
        .image-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            /* height: 100%; */
        }
        .image-card img {
            width: 100%;
            /* height: 200px; */
            object-fit: cover;
        }
        .image-caption {
            padding: 15px;
            background-color: white;
        }
        .section-title1 {
            color: #1a3a5f;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e9ecef;
        }

        /*Project Page */

        .project-card1 {
            border: none;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            margin-bottom: 40px;
            overflow: hidden;
            background: white;
        }
        
        .project-card1:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        
        .project-image1 {
            /* height: 280px; */
            object-fit: cover;
            width: 100%;
            transition: transform 0.5s ease;
        }
        
        .project-card1:hover .project-image1 {
            transform: scale(1.05);
        }
        
        .project-content1 {
            padding: 30px;
        }
        
        .project-location1 {
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
        }
        
        .project-location1 i {
            margin-right: 10px;
            color: var(--accent);
        }
        
        .project-description1 {
            margin-bottom: 25px;
            color: #555;
            font-size: 1.05rem;
        }
        
        .services-title1 {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1.2rem;
            border-left: 4px solid var(--accent);
            padding-left: 12px;
        }
        
        .services-list1 {
            list-style-type: none;
            padding-left: 0;
        }
        
        .services-list1 li {
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: flex-start;
        }
        
        .services-list1 li:last-child {
            border-bottom: none;
        }
        
        .services-list1 li:before {
            content: "✓";
            color: var(--accent);
            font-weight: bold;
            display: inline-block;
            width: 1.5em;
            margin-right: 5px;
            flex-shrink: 0;
        }

        .project-section-title {
            color: var(--primary);
            margin-bottom: 40px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e9ecef;
            position: relative;
            font-weight: 700;
        }
        
        .project-section-title:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background-color: var(--accent);
        }

        .project-badge1 {
            background: var(--accent);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }


/*Clients page */

/* Clients Section */
        .clients-section1 {
            padding: 80px 0;
        }
        
         .clients-section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .clients-section-title h2 {
            font-size: 36px;
            color: #1a3a8f;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .clients-section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: #2a56c6;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .clients-section-title p {
            color: #666;
            max-width: 600px;
            margin: 30px auto 0;
            font-size: 18px;
        }
        
        .clients-grid1 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .client-card1 {
             background: white;
            border-radius: 12px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 220px;
            position: relative;
            overflow: hidden;
        }
        .client-card1::before{
            content: '';
             position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #1a3a8f, #2a56c6);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .client-card1:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .client-card1:hover::before {
            transform: scaleX(1);
        }
        
        .client-logo1 {
           /* height:100px; */
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: transform 0.4s ease;
        }

        .client-card1:hover .client-logo1 {
            transform: scale(1.05);
        }

        .client-logo1 img {
            max-height: 150px;
            max-width: 100%;
            filter: grayscale(30%);
            transition: filter 0.4s ease;
        }

          .client-card1:hover .client-logo1 img {
            filter: grayscale(0%);
        }
        
        .client-name1 {
            font-weight: 600;
            color: #333;
            font-size: 18px;
            margin-top: 10px;
        }
        
        .client-tagline1 {
             font-size: 14px;
            color: #777;
            margin-top: 8px;
            font-style: italic;
        }


        /*Contact Page */
        
        
        .body-contact {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.contact-header {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 30px;
}

.contact-title {
    font-size: 1.75rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    border-radius: 2px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
}

/* Info Section */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.contact-info-title {
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.2rem;
}

.contact-info-text {
    color: #7f8c8d;
    font-size: 1rem;
}
.contact-info a {
    color: #bbb; text-decoration: none;
}
.contact-info a:hover{color:var(--primary-color)}

.contact-company-name {
    font-weight: 700;
    color: #3C467B;
    font-size: 3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Map and Form */
.contact-map-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

.contact-map-box {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 500px;
}

.contact-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-box {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

.contact-form-group {
    margin-bottom: 25px;
}

.contact-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.contact-input, .contact-textarea, .contact-select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-input:focus, .contact-textarea:focus, .contact-select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.contact-textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-btn {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    margin-top: 10px;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.contact-recaptcha {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.contact-response {
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    display: none;
    text-align: center;
}

.contact-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.contact-footer {
    text-align: center;
    padding: 30px;
    background: #2c3e50;
    color: white;
    margin-top: 50px;
    border-radius: 15px;
}

.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.contact-social-links a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.contact-social-links a:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-map-form {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-map-box {
        height: 400px;
    }
    .contact-company-name {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .contact-form-box {
        padding: 25px;
    }
    .contact-company-name {
        font-size: 1.8rem;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

        /* Footer */
        .footer {
            background-color: var(--secondary-color);
            color: #fff;
            padding: 80px 0 0;
        }
        
        .footer h5 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer h5:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
            bottom: 0;
            left: 0;
        }
        
        .footer p {
            color: #bbb;
            line-height: 1.8;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
.footer-links a {
    color: #bbb;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links a:hover::after {
    width: 100%;
}

        .footer-links i {
    margin-right: 8px;
    color: #fe6848; /* fixed icon color */
    transition: transform 0.3s ease;
    font-size: 12px;
}


        
        .contact-info {
            list-style: none;
            padding: 0;
            color: #bbb;
        }
        
        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            color: var(--primary-color);
            margin-right: 10px;
            margin-top: 5px;
        }

        .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: transparent;
    color: #fff;
    margin-right: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    border-color: #fff;
    background: transparent;
    color: #fff;
    transform: translateY(-5px);
}


        
        .copyright {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            margin-top: 60px;
            text-align: center;
            color: #bbb;
        }

         .copyright a{color: #bbb; text-decoration: none;}
         .copyright a:hover{color:#fe6848}
        
        /* Responsive Styles */
        @media (max-width: 991.98px) {
            .navbar-nav {
                padding: 20px 0;
            }
            
            .navbar-collapse {
                background-color: #fff;
                padding: 20px;
                border-radius: 5px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }
            
            .carousel-caption {
                bottom: 50px;
            }
            
            .carousel-caption h2 {
                font-size: 2rem;
            }
            
            .welcome-text {
                padding-right: 0;
                margin-bottom: 30px;
            }
            
            .services-list {
                padding-left: 0;
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767.98px) {
            .carousel-item {
                height: auto;
                min-height: auto;
            }
            .carousel-indicators{display: none;}
            
            .carousel-caption {
                bottom: 30px;
                left: 5%;
            }
            
            .carousel-caption h2 {
                font-size: 1.5rem;
            }
            
            .carousel-caption p {
                font-size: 1rem;
            }
            
            .welcome-section, .services-section, .projects-section, .clients-section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .client-logo {
                width: 140px;
                height: 100px;
            }
        }
        
        @media (max-width: 575.98px) {
            .header .navbar-brand {
                margin: 0 auto;
            }
            
            .navbar-toggler {
                position: absolute;
                right: 15px;
                top: 15px;
            }
            
            .carousel-item {
                height: auto;
            }
            
            .carousel-caption {
                bottom: 20px;
            }
            
            .carousel-caption h2 {
                font-size: 1.2rem;
                margin-bottom: 10px;
            }
            
            .carousel-caption p {
                font-size: 0.9rem;
                margin-bottom: 15px;
            }
            
            .btn-primary-custom {
                padding: 10px 20px;
            }
        }


        @media(max-width:993px)
        {
            body{text-align: center;}
            .clients-slider{flex-wrap: wrap;}
            .carousel-caption{text-align: center; left: 50%; transform: translateX(-50%); width: 100%;}
             .navbar-brand{width: 100%;}
            .navbar-brand img{margin-left: auto; margin-right: auto; display: block;}
            .welcome-text h1::after{left: 50%; transform: translateX(-50%);}
            .services-list{margin-top: 0px; margin-bottom: 30px;}
            .services-section .section-title{margin-bottom: 0px;}
            .services-content {margin-top: 20px;}
            .services-list ul{display: inline-block;
    text-align: left;
    margin: 0 auto;  }
    .projects-section .col-md-6{margin-bottom: 25px;}
    .projects-section .btn-primary-custom{margin-top: -25px;}
    .footer h5::after{left: 50%; transform: translateX(-50%);}
     .contact-info{display: inline-block;
    text-align: left;
    margin: 0 auto;  }
    .footer-links{display: flex; justify-content: center; flex-wrap: wrap;}
    .footer-links li{margin-right: 20px;}

.project-section-title::after{left: 50%; transform: translateX(-50%);}
        }