body {
    margin: 0;
    font-family: 'Poppins', sans-serif;

    overflow-x: hidden;
    width: 100%;
 box-sizing: border-box;
    max-width: 100%;
}

/* HEADER */
header {
     background:#0c3b53;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img {
     height: 45px;
    display: block;
    border-radius:12px;
}

/* NAV */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #00bcd4;
}

/* DROPDOWN */
.dropdown-parent {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    display: none;
    min-width: 220px;
    border-radius: 6px;
    padding: 10px 0;
}

.dropdown-menu li {
    padding: 8px 15px;
}

.dropdown-menu li a {
    color: #fff;
    font-size: 14px;
}

.dropdown-menu li:hover {
    background: #00bcd4;
}

.dropdown-parent:hover .dropdown-menu {
    display: block;
}

/* HAMBURGER */
.hamburger {
     display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
}

@media (max-width: 768px) {

    .container {
        justify-content: space-between;
    }

    /* show hamburger */
    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 18px;
    }

    /* nav hidden by default */
    nav {
        display: none;
        width: 100%;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        background: #0c3b53;
        padding: 15px 0;
        text-align: center;
    }

    nav ul li {
        margin: 10px 0;
    }
}
/*MARQUES START */
.marquee {
  width: 100%;
  overflow: hidden;
  background: #0c3b53;
  padding: 12px 0;
}

.track {
  display: flex;
  width: max-content;
  animation: scroll 10s linear infinite;
}

.track span {
  font-size: 26px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  margin-right: 40px;
  letter-spacing: 2px;
}

/* Smooth infinite animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .track span {
    font-size: 16px;
    margin-right: 25px;
  }

  .track {
    animation: scroll 8s linear infinite; /* slightly faster for mobile */
  }
}
.marquee:hover .track {
  animation-play-state: paused;
}
/*MARQUE END */
.section-1 {
    margin: 0px;
    background-image: url("../IMAGES/SECTION-IMAGE.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.section-1 p {

    text-align: center;
    padding: 10px 0;
    letter-spacing: 5px;
    color: black;

}

.section-1 h1 {

    text-align: center;
    padding: 10px 0;
    margin: 10px 0;
    letter-spacing: 5px;


}

.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0c3b53;
}

.slides {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;

}

.slide {
    width: 100%;
    flex-shrink: 0;
    text-align: center;
}

.slide h1 {
    color: whitesmoke;
    font-size: 30px;
}

/* Buttons */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.hero {

    width: 100%;
    min-height:100vh;
    background: linear-gradient(120deg, #0c3b53, #092634);
    color: #fff;
    padding: 0px 0;
}


.left {
    width: 48%;
    float: left;
}

.small {
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: whitesmoke;
}

.left h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: whitesmoke;
}

.left h1 span {
    font-weight: bold;
    color: whitesmoke;
}

.desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

button {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    margin-bottom: 20px;
}

/* RIGHT SIDE */
.right {
    width: 48%;
    float: right;
}

/* BOXES */
.box {
    width: 48%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 10px;
}

.box i {
    font-size: 20px;
    margin-bottom: 5px;
}

.box h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.box p {
    font-size: 13px;
}

/* CLEAR FLOAT */
.clear {
    clear: both;
}

/* RESPONSIVE */
@media(max-width:768px) {

    .left,
     {
        width: 100%;
        float: none;
    }
    .right{
 grid-template-columns: 1fr;
        gap: 15px;
    }
    .box {
        width: 100%;
        padding:12px 15px;
    }
}



.hero {
    width: 100%;
    min-height: 100vh;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
}


.left {
    width: 50%;
}

.small {
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.left h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.left h1 span {
    font-weight: 700;
}

.desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.85;
}

button {
    background:white;
    color: black;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 16px;
    margin-bottom:15px;
}

button:hover {
    background: #fff;
    color: #000;
}

/* RIGHT SIDE */
.right {
    width: 50%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.box {
    padding: 10px;
}

.box i {
    font-size: 30px;
    margin-bottom: 5px;
    color: #ffffff;
}

.box h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.box p {
    font-size: 13px;
    opacity: 0.8;
}

/* RESPONSIVE */
@media(max-width:900px) {
    .container {
        flex-direction: column;
    }

    .left,
    .right {
        width: 100%;
    }

    .right {
        grid-template-columns: 1fr;
    }
}



.clients-section {
    padding: 60px 20px;
    text-align: center;
    background: #0c3b53;
    color: #fff;
}

.clients-section h2 {
    margin-bottom: 30px;
}

/* SLIDER */
.clients-slider {
    overflow: hidden;
    width: 100%;
}

.clients-track {
    display: flex;
    width: max-content;
    animation: scroll 12s linear infinite;
}

.client {
    min-width: 200px;
    margin: 0 20px;
    padding: 20px;
    background: #ffffff;
    color: #000;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ANIMATION */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .client {
        min-width: 150px;
        font-size: 14px;
    }
}
.ourproject {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    position: relative
}

.ourproject h1 {
    font-size: 34px;
    text-transform: capitalize;
    margin-bottom: 15px;
    position: relative;
    color: whitesmoke;


}

.ourproject h1::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #00bcd4;
    display: block;
    margin: 10px auto 20px;
}

.ourproject p {

    font-size: 14px;
    color: #ccc;
    line-height: 1.7;
    max-width: 600px;
    margin: 5px auto;

}

.ourproject::after {
    content: "";
    width: 80%;
    height: 2px;
    background: #ccc;
    position: absolute;
    bottom: 0;
    left: 10%;
}

@media(max-width:768px) {

    .quality-section h3 {
        font-size: 20px;
    }

    .ourproject h1 {
        font-size: 26px;
    }

    .ourproject p {
        font-size: 13px;
    }
}

.gallery {
    text-align: center;
    padding: 40px 10px;
    background: #0c3b53;
}

.gallery h2 {
    margin-bottom: 20px;
    color:white;
}

/* Remove space between inline-block items */
.gallery-container {
    font-size: 0;
}

.item {
    display: inline-block;
    width: 25%;
    /* 4 columns */
    padding: 10px;
    box-sizing: border-box;
}

.item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
    border-radius: 12px;
}

.item img:hover {
    transform: scale(1.05);
}

/* Tablet */
@media (max-width: 900px) {
    .item {
        width: 33.33%;
        /* 3 columns */
    }
}

/* Mobile */
@media (max-width: 600px) {
    .item {
        width: 50%;
        /* 2 columns */
    }
}

/* Small mobile */
@media (max-width: 400px) {
    .item {
        width: 100%;
        /* 1 column */
    }
}

.testimonial-section::after {
    content: "";
    display: table;
    clear: both;
}

.testimonial-section {
    display: flex;
    width: 100%;
    min-height: 400px;
}


/* LEFT SIDE */
.testimonial-left {
    width: 50%;
    float: left;
    position: relative;
    overflow: hidden;
    height: 400px;
}

.testimonial-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

/* RIGHT SIDE */
.testimonial-right {
    width: 50%;
    float: right;
    background: #111;
    color: #fff;
    padding: 60px 40px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    height: 400px;
     background: #111;
    

}

@media (max-width: 768px) {
    .testimonial-section {
        flex-direction: column;
        height: auto;
    }

    .testimonial-left,
    .testimonial-right {
        width: 100%;
        height: auto;
    }

    .testimonial-left {
        height: 250px; /* optional image height */
    }

    .testimonial-right {
        padding: 30px 20px;
    }
}

.contact {
    background: #0c3b53;
    padding: 50px 10px;
    margin: 0;


}



.contact h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: white;
    text-align: center;
}

.contact-box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-item {
    background: #fff;
    padding: 20px;
    flex: 1 1 300px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.contact-item i {
    font-size: 24px;
    color: #007bff;
    min-width: 40px;
}

.contact-item h4 {
    margin: 0;
    font-size: 18px;
    color: #222;
}

.contact-item p {
    margin: 3px 0 0;
    color: #555;
    font-size: 14px;
}

.contact-item:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-box {
        flex-direction: column;
    }
}

.footer {
    margin: 0px 0px;
    background: #111;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin: 0px 0px;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #00aced;
    transform: scale(1.2);
}

@media(max-width:768px) {

    h1 {
        font-size: 24px;
    }

    .section-1 h1 {
        font-size: 22px;
    }

    .slide-content {
        padding: 0 40px;
    }

    .arrow {
        font-size: 18px;
    }

    .ourproject,
    .quality-section {
        padding: 30px 15px;
    }
}



/* conatct page style */




/* Header Section Styling */
.touch-section {
    text-align: center;
    padding: 60px 20px;
}

.title-container {
    border-top: 2px solid #cceeff;
    border-bottom: 2px solid #cceeff;
    display: inline-block;
   
    margin-bottom: 20px;
    padding: 10px 20px;
}

h1 {
    font-size: 40px;
    font-weight: 200;
    letter-spacing: 2px;
    color: #333;
}

.blue-text {
    color: #00AEEF;
    font-weight: 700;
}

.subtitle {
    width: 90%;
    max-width: 1000px;
    margin: 10px auto;
    color: #777;
    font-size: 14px;
    text-align: center;
    word-spacing: 4px;
    letter-spacing: 2px;
    white-space: normal;
    line-height: 1.5;
   
        padding: 0 10px;

    /* Text ko ek line mein rakhne ke liye */
}

/* Contact Grid Layout */
.contact-container {

    width: 100%;
    min-height: 500px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
        gap: 20px;

}

.contact-image {
    
    min-width: 300px;
    flex: 1 1 50%;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-grid {
    flex: 1 1 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: 300px;
    grid-template-columns: 1fr;
}

/* Info Boxes Common Styles */
.info-box {
    padding: 50px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info-box h3 {
    color: white;
    font-size: 16px;
    margin: 15px 0;
    letter-spacing: 1px;
}

.info-box p {
    color: white;
    font-size: 13px;
    line-height: 1.6;
}

/* Box Colors */
.black {
    background-color: #1a1a1a;
}

.blue {
    background-color: #29b6f6;
}

/* Icon Styles based on Box Color */
.icon {
    font-size: 35px;
    margin-bottom: 10px;
}

.black .icon {
    color: #29b6f6;
    /* Black box mein Blue icon */
}

.blue .icon {
    color: white;
    /* Blue box mein White icon */
}

/*------------------*/
/* --- Message Section Styling --- */
.message-section {
    padding: 80px 20px;
    text-align: center;
    background-color: white;
    /* Screen ke mutabik light background */
}

.message-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Form Container */
.contact-form {
    width: 90%;
    max-width: 800px;
    /* Form ko center mein compact rakhne ke liye */
    margin: 0 auto;
    /* Horizontally center */
}

/* Input Row (Flex for structure) */
.input-row {
    display: flex;
    flex-wrap: wrap;
    /* Mobile par stack ho sakein */
    gap: 20px;
    /* Inputs ke beech ka gap */
    margin-bottom: 20px;
    /* Rows ke beech ka gap */
}

/* For the special row with two columns */
.input-row .input-group {
    flex: 1;
    /* Equal width */
    min-width: 250px;
    /* Mobile par full width se bachane ke liye safe minimum */
}

/* Common Input Styling (Inputs and Textarea) */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    color: #333;
    font-family: inherit;
    background-color: #fafafa;
}

/* Full-width inputs not in a group */
.input-row>input[type="email"],
.input-row>textarea {
    flex: 100%;
}

/* Input Focus Styling (Kuch color badal jaye jab click karein) */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #29b6f6;
    /* Wahi blue color jab focus ho */
    background-color: white;
}

/* Textarea specifically */
.contact-form textarea {
    resize: vertical;
    /* Sirf upar-niche resize ho sake, side mein nahi */
}

/* Centering the button */
.center-btn {
    justify-content: center;
    margin-top: 30px;
}

/* Submit Button Styling */
.send-btn {
    background-color: #29b6f6;
    /* Blue background */
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

/* Button Hover Effect */
.send-btn:hover {
    background-color: #1a1a1a;
    /* Mouse le jaane par black ho jaye (optional style) */
}

/*-------------------*/
.map-section {
    width: 100%;
    margin-top: 5px;
    /* Form se thodi doori banane ke liye */
    line-height: 0;
    /* Bottom extra space khatam karne ke liye */
    border-top: 1px solid #eee;
    /* Light border top par */
}

.map-section iframe {
    width: 100%;
    display: block;
}
