/* Reset & Base Styles */
/* to boost the performance of chrome, safari or modern browser */
html {
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* to prevent Horizontal scroll  */
    font-family: 'Montserrat', sans-serif;
    color: #333;
}
/* Top Bar */
.container {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar {
    background: #f8f8f8;
    padding: 10px 0;
    width: 100%;
}
.contact-info .separator {
    margin: 0 15px;
    color: #ccc;
}
/*Top bar mobile resposnive*/
@media (max-width: 768px) {
    .container {
        flex-direction: column; 
        text-align: center;
        gap: 10px;
    }
    
    .contact-info {
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .top-bar {
        padding: 8px 0;
    }
}
/* Navigation */
header {
    background: #ffffff;
    width: 100%;
    z-index: 1000;
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0; 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
   
}

.logo img {
    width: 200px; 
    height: auto;  
    display: block;
}
/* Desktop par toggle hide rahega */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease-in-out;
}

/* Mobile Responsive Styles */
@media (max-width: 576px) {
    .section-title-wrapper {
        padding: 50px 0; 
    }

    .heading-title {
        font-size: 40px; /* Mobile par aur chota */
        margin-top: 30px;
    }

    .btn-view {
        font-size: 16px; /* Button text size */
    }
}

@media (max-width: 992px) {
    .section-title-wrapper {
        padding: 60px 0; /* Mobile par spacing kam */
    }

    .scrolling-text {
        font-size: 100px; /* Tablet par size aadha kar diya */
        top: 40%; /* Position thodi upar */
    }

   .heading-title {
        font-size: 60px; 
        margin-top: 50px; 
        padding-left: 20px;
    }

    .title-flex {
        flex-direction: column; /* Stack vertically on mobile */
        align-items: flex-start;
        gap: 20px;
    }

    .subtitle {
        width: 100%;
        font-size: 16px;
    }
    .menu-toggle {
        display: block; /* Mobile par icon dikhega */
    }

    .nav-list {
        display:none;
        position: absolute;
        top: 100%; /* Header ke niche se start hoga */
        left: -100%; /* Shuruat mein screen se bahar rahega */
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 20px 0;
        z-index: 999;
    }

    /* Jab menu active ho toh slide in karega */
    .nav-list.active {
        left: 0;
    }

    .nav-list li {
        margin: 15px 0;
    }

    /* Hamburger to 'X' Animation */
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}
.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-menu {
    display: none; /* Default hidden */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    padding: 10px 0;
    list-style: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Soft shadow */
    width: 200px;
    border-radius: 5px;
}

.dropdown:hover .dropdown-menu {
    display: block; /* Hover karne par dikhega */
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.dropdown-menu li a:hover {
    background-color: #f8f8f8;
    color: #007bff; /* Hover par text color change */
}
/* Taki dropdowns sticky nav ke upar na aayein */
.nav-container {
    position: relative;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 700;
}

.enquire-btn {
    color: #000;
}

/* Mobile Screen ke liye adjustments (Media Query) */
@media (max-width: 992px) {
    /* Menu ko fold karne ke liye */
    nav ul {
        display: none; /* Default hidden */
        flex-direction: column;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    nav ul.active {
        display: flex; /* Toggle click par dikhega */
    }

    /* Dropdown adjustment for Mobile */
    .dropdown-menu {
        position: static !important; /* Absolute se static karke stack karenge */
        box-shadow: none !important;
        width: 100% !important;
        background: #fdfdfd !important;
        display: none !important; /* Clickable banayenge JS se */
    }
    .dropdown-menu.active {
        display: block !important;
    }


    /* Mobile par link spacing */
    nav ul li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
}

/* Logo resizing for small screens */
@media (max-width: 480px) {
    .logo img {
        width: 150px; /* Mobile par logo thoda chota */
    }
}
/*hero section*/
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen height */
    background-image: url('../iMAGES/about-us.png'); /* UPDATE PATH */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* Dark overlay to make text readable */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    z-index: 1;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

/* Responsive adjustments for hero section */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 50px; }
}

/*about-us section*/
.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 140px 20px;
}

.about-text { flex: 1; }

.section-heading {
    font-size: 40px;
    border-left: 5px solid red;
    padding-left: 15px;
    margin-bottom: 20px;
}

.about-images {
    flex: 1;
    position: relative;
    height: 400px;
}

.img-back, .img-front {
    width: 60%;
    border: 0px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    
}

.img-back { position: absolute; top: 0; left: 0; }
.img-front { position: absolute; bottom: 0; right: 0; }

/* --- MOBILE RESPONSIVE  for about us--- */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column !important; 
        text-align: center;
        padding: 140px 15px !important;
    }
    .about-text {
        width: 100% !important;
        margin-bottom: 30px;
    }

    .section-heading {
        border-left: none;
        border-bottom: 5px solid red;
        display: inline-block;
        padding-left: 0;
        padding-bottom: 10px;
    }

    .about-images {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px; /* Do images ke beech gap */
        margin-top: 20px;
    }

    .img-back, .img-front {
        width: 90% !important; /* Mobile par width badhayein */
        position: static !important;
        margin: 0 !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

}

/*break-section*/

/* --- Get In Touch Banner --- */
.get-in-touch {
    background-image: url('../iMAGES/cblack-closeup.JPG'); 
    background-size: cover;
    background-position: center;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
}

.overlay {
    background: rgba(255, 255, 255, 0.2); /* Subtle dark tint over image */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-container h1 {
    color: white;
    font-size: 60px;
    font-weight: 800;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.talk-btn {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}

.talk-btn:hover {
    background: #f0f0f0;
}

/*foot section*/
.main-footer {
    background-color: #ffffff;
    color: #000000;
    padding: 60px 0 30px 0;
    text-align: center;
}   

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo img {
    width: 150px; 
    margin-bottom: 10px;
}

.company-name {
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 22px;
    margin-bottom: 30px;
}

.company-name span {
    font-size: 14px;
    font-weight: normal;
}

.footer-info p {
    font-size: 14px;
    color: #000000;
    margin: 8px 0;
}

.sales-enquiry {
    margin-top: 25px;
}

.sales-enquiry strong {
    display: block;
    margin-bottom: 10px;
    color: #000000;
}

/* Social Media Circles */
.social-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.social-icon:hover {
    background: #ffffff;
    color: #000;
}

/* Responsive Logic */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .cta-container h1 { font-size: 40px; }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-grid {
        flex-direction: column;
        text-align: center;
    }
    .main-circle-frame {
        width: 320px;
        height: 320px;
    }
    .feature-row {
        justify-content: center;
    }
}



/* Floating / Moving Animation Logic */
@keyframes shapeMover {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(15px, -15px) rotate(5deg);
    }
    50% {
        transform: translate(0, -30px) rotate(0deg);
    }
    75% {
        transform: translate(-15px, -15px) rotate(-5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;   
  right: 40px;    
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 10000;  
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

/* Hover effect for a nice touch */
.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}