
.hero{
    height:90vh;
    background:url("banner31.png") center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

/* Full banner black overlay */
.hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6); /* black overlay with transparency */
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2; /* above overlay */
    padding:40px;
    color: gold; /* golden heading/text */
    max-width:600px;
    border-radius:10px;
    text-align:center;
}

.hero h1{
    font-size:48px;
    margin-bottom:15px;
    color:gold; /* golden heading */
}






.floating-social {
  position: fixed;
  top: 40%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

/* Base Button */
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  color: #fff;
  text-decoration: none;
  border-radius: 0 30px 30px 0;
  font-size: 22px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.social-btn:hover {
  transform: translateX(8px) scale(1.08);
}

/* Glow Effect */
.social-btn::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 100%;
  top: 0;
  left: -120%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-20deg);
  transition: 0.5s;
}

.social-btn:hover::before {
  left: 120%;
}

/* Individual Colors */
.social-btn.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.social-btn.facebook {
  background: #1877f2;
}

.social-btn.linkedin {
  background: #0077b5;
}

/* Icon Animation */
.social-btn i {
  transition: transform 0.3s ease;
}

.social-btn:hover i {
  transform: rotate(10deg) scale(1.2);
}



.hero p{
    font-size:18px;
    margin-bottom:20px;
    color:#fff; /* white paragraph for readability */
}

.btn{
    padding:12px 25px;
    background:#723972; /* light purple button */
    color:gold; /* golden text */
    text-decoration:none;
    margin:5px;
    border-radius:5px;
    font-weight:bold;
    transition:0.3s;
}

.btn:hover{
    background:#A070A0; /* darker purple on hover */
    color:#fff;
}

.btn2{
    padding:12px 25px;
    background:gold; /* golden button */
    color:#4B0082; /* dark purple text */
    text-decoration:none;
    margin:5px;
    border-radius:5px;
    font-weight:bold;
    transition:0.3s;
}

.btn2:hover{
    background:gold; /* slightly brighter gold */
    color:#4B0082;
}


/* Container & Layout */
.container-5 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

/* Left Image */
.image-wrapper-5 {
    flex: 1;
    position: relative;
}

.main-image-5 {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* Experience Badge */
.experience-badge-5 {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: gold;
    color: #4B2475;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.number-5 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.text-5 {
    font-size: 13px;
    line-height: 1.3;
}

/* Right Text Content */
.text-content-5 {
    flex: 1;
}

.section-tagline-5 {
    font-size: 16px;
    text-transform: uppercase;
    color: gold;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.main-heading-5 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #5D2E8E;
    position: relative;
}

.section-underline-5 {
    width: 80px;
    height: 4px;
    background-color: gold;
    margin-bottom: 25px;
    border-radius: 2px;
}

.description-5 p {
    margin-bottom: 18px;
    font-size: 17px;
    color: #333;
    line-height: 1.6;
}

/* Highlights / Bullet Points with Icons */
.highlights-5 {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.highlights-5 li {
    font-size: 16px;
    color: #4B2475;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-5 {
    font-size: 18px;
    color: gold;
    flex-shrink: 0;
}

/* CTA Button */
.cta-button-5 {
    background-color: gold;
    color: #4B2475;
    border: none;
    padding: 14px 28px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.cta-button-5:hover {
    background-color: gold;
    color: #5D2E8E;
}

/* Responsive */
@media (max-width: 768px) {
    .container-5 {
        flex-direction: column-reverse; /* Text first on mobile, image below */
        gap: 35px;
        padding: 40px 20px;
    }

    .main-heading-5 {
        font-size: 32px;
    }

    .description-5 p {
        font-size: 16px;
    }

    .highlights-5 li {
        font-size: 15px;
    }

    .experience-badge-5 {
        bottom: 10px;
        right: 10px;
        width: 110px;
        height: 110px;
    }

    .number-5 {
        font-size: 28px;
    }

    .text-5 {
        font-size: 11px;
    }
}



.services-banner-section{
    padding:80px 20px;
    background:#f6f3ff;
}

.container-services-banner{
    max-width:1200px;
    margin:auto;
}

.services-heading{
    text-align:center;
    font-size:38px;
    font-weight:700;
    color:#4b2aad;
    margin-bottom:10px;
}

.services-subheading{
    text-align:center;
    color:#666;
    margin-bottom:50px;
}

.services-cards-banner{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card-banner{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    text-align:center;
    position:relative;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.4s;
}

.service-card-banner:hover{
    transform:translateY(-8px);
}

.service-image-banner{
    width:100%;
    height:200px;
    object-fit:cover;
}

.service-icon-banner{
    width:60px;
    height:60px;
    background:linear-gradient(135deg,#7b5cff,#d4af37);
    color:white;
    font-size:24px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    top:170px;
    border:4px solid white;
}

.service-card-banner h3{
    margin-top:45px;
    font-size:20px;
    color:#4b2aad;
}

.service-card-banner p{
    font-size:14px;
    color:#666;
    padding:0 20px;
}

.service-link{
    display:inline-block;
    margin:15px 0 25px;
    color:#d4af37;
    font-weight:600;
    text-decoration:none;
}

.service-link:hover{
    text-decoration:underline;
}




.mission-vision-section{
padding:90px 20px;
/* background:#faf7ff; */
}

.mission-container{
max-width:1100px;
margin:auto;
}

.mission-heading{
text-align:center;
font-size:38px;
font-weight:700;
color:#4b2aad;
margin-bottom:10px;
}

.mission-subheading{
text-align:center;
color:#666;
margin-bottom:50px;
}

.mission-vision-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:40px;
}

.mission-card{
background:white;
padding:40px 30px;
border-radius:12px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.4s;
}

.mission-card:hover{
transform:translateY(-8px);
}

.mission-icon{
width:70px;
height:70px;
background:linear-gradient(135deg,#7b5cff,#d4af37);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
color:white;
margin:auto;
margin-bottom:20px;
}

.mission-card h3{
font-size:22px;
color:#4b2aad;
margin-bottom:15px;
}

.mission-card p{
color:#666;
font-size:15px;
line-height:1.7;
}
.why-choose-section{
    padding:80px 20px;
    background:#f9f7fc;
}

.why-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.why-heading{
    font-size:36px;
    color:#6a0dad; /* Purple */
    margin-bottom:10px;
}

.why-subheading{
    color:#555;
    margin-bottom:50px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-box{
    background:#fff;
    padding:30px;
    border-radius:10px;
    border-top:4px solid #d4af37; /* Gold */
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.why-box:hover{
    transform:translateY(-8px);
}

.why-icon{
    font-size:40px;
    margin-bottom:15px;
}

.why-box h3{
    color:#6a0dad; /* Purple */
    margin-bottom:10px;
}

.why-box p{
    color:#555;
}

/* 
.why-choose-section{
padding:90px 20px;
background:#ffffff;
}

.why-container{
max-width:1200px;
margin:auto;
}

.why-heading{
text-align:center;
font-size:38px;
font-weight:700;
margin-bottom:10px;
}

.why-subheading{
text-align:center;
color:#777;
margin-bottom:50px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.why-box{
background:#fff;
padding:35px 25px;
border-radius:10px;
text-align:center;
border:1px solid #eee;
transition:0.4s;
}

.why-box:hover{
transform:translateY(-8px);
border-color:#d4af37;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.why-icon{
width:65px;
height:65px;
background:#d4af37;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
color:white;
margin:auto;
margin-bottom:20px;
}

.why-box h3{
font-size:20px;
margin-bottom:10px;
}

.why-box p{
font-size:14px;
color:#666;
line-height:1.6;
}

.why-choose-section{
padding:90px 20px;
background:#ffffff;
}

.why-container{
max-width:1200px;
margin:auto;
}

.why-heading{
text-align:center;
font-size:38px;
font-weight:700;
margin-bottom:10px;
}

.why-subheading{
text-align:center;
color:#777;
margin-bottom:50px;
}


.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.why-box{
background:#fff;
padding:35px 25px;
border-radius:10px;
text-align:center;
border:1px solid #eee;
transition:0.4s;
}

.why-box:hover{
transform:translateY(-8px);
border-color:#d4af37;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}


.why-icon{
width:65px;
height:65px;
background:linear-gradient(135deg,#7b5cff,#d4af37);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
color:white;
margin:auto;
margin-bottom:20px;
}

.why-box h3{
font-size:20px;
margin-bottom:10px;
}

.why-box p{
font-size:14px;
color:#666;
line-height:1.6;
} */



/* Core Styles */
.custom-header {
    /* width: 100%; */
  background-color: purple;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    max-width: 1200px;
    margin: auto;
    /* padding: 15px 20px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.header-logo img {
    width: 180px;
}

/* TOGGLE */
.header-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001; /* always on top */
}

.header-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: 0.3s;
}

/* NAV DESKTOP */
.header-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.header-nav ul li a {
    text-decoration: none;
    color: gold;
    font-weight: 500;
}

.header-nav ul li a:hover {
    color: purple;
}

/* MOBILE */
@media (max-width: 768px) {

    .header-toggle {
        display: flex;
    }

    .header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;

        /* Smooth animation */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.4s ease;
        

        z-index: 1000;
    }

   .header-nav.active {
    max-height: 500px; /* increase height */
    opacity: 1;
}
    .header-nav ul {
        flex-direction: column;
        text-align: center;
        /* padding: 20px 0; */
    }
}

/* 9 Cards Grid Layout */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    gap: 25px; /* Spacing between cards */
}

/* Card Styling to match screenshot */
.capability-card {
    background-color: #fff;
    border: 1px solid #1a3a4a; /* Border color from screenshot */
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
}

/* Image Proportions (As per your request) */
.image-container {
    width: 100%;
    aspect-ratio: 1.5 / 1; /* Height aur width screenshot ke balance mein */
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image stretch nahi hogi */
}

/* Dark Bottom Box */
.content-box {
    background-color: #1a3a4a; /* Dark Teal background */
    color: #ffffff;
    padding: 25px 20px;
    text-align: center;
    flex-grow: 1; /* Ensures all boxes stay equal height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.content-box p {
    font-size: 13.5px;
    line-height: 1.5;
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
    .capabilities-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 26px; }
}







.manufacturing{
    padding:80px 20px;
    background:#f9f7fc;
}

.manufacturing .container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.section-title{
    font-size:36px;
    color:#6a0dad; /* Purple */
    margin-bottom:15px;
}

.section-desc{
    max-width:800px;
    margin:auto;
    color:#555;
    margin-bottom:50px;
    line-height:1.6;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
    border-bottom:4px solid #d4af37; /* Gold */
    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.card-content{
    padding:20px;
}

.card-content h3{
    color:#6a0dad; /* Purple */
    margin-bottom:10px;
}

.card-content p{
    color:#555;
    font-size:14px;
    line-height:1.5;
}




.footer-bg{
background:#2f1747;
color:#fff;
}

.footer-bg h2{
color:#FFD700;
font-size:20px;
margin-bottom:20px;
}

.footer-link ul{
list-style:none;
padding:0;
}

.footer-link ul li{
margin-bottom:10px;
}

.footer-link ul li a{
color:#ddd;
text-decoration:none;
transition:0.3s;
}

.footer-link ul li a:hover{
color:#FFD700;
}

.f-contact ul{
list-style:none;
padding:0;
}

.f-contact li{
margin-bottom:12px;
display:flex;
gap:10px;
}

.footer-social a{
color:#fff;
margin-right:10px;
font-size:18px;
}

.footer-social a:hover{
color:#FFD700;
}

.copyright-wrap{
background:#1c0d2e;
padding:15px 0;
margin-top:30px;
}

.copyright-text{
color:#ccc;
}



/* Contact Icons */
.f-contact li i{
color:#FFD700; /* golden icon */
font-size:18px;
}

/* Social Icons */
.footer-social a{
color:#FFD700; 
margin-right:12px;
font-size:18px;
transition:0.3s;
}

/* Social Hover */
.footer-social a:hover{
color:#ffffff;
}

/* Contact text spacing */
.f-contact li{
display:flex;
align-items:center;
gap:10px;
margin-bottom:12px;
}


/* Footer Base */
.footer-bg{
background:#2f1747;
color:#fff;
padding-top:60px;
}

.footer-bg h2{
color:#FFD700;
font-size:20px;
margin-bottom:20px;
}

/* Links */
.footer-link ul{
list-style:none;
padding:0;
}

.footer-link ul li{
margin-bottom:10px;
}

.footer-link ul li a{
color:#ddd;
text-decoration:none;
transition:0.3s;
}

.footer-link ul li a:hover{
color:#FFD700;
}

/* Contact */
.f-contact ul{
list-style:none;
padding:0;
}

.f-contact li{
display:flex;
align-items:center;
gap:10px;
margin-bottom:12px;
}

.f-contact li i{
color:#FFD700;
font-size:18px;
}

/* Social Icons */
.footer-social a{
color:#FFD700;
margin-right:12px;
font-size:18px;
transition:0.3s;
}

.footer-social a:hover{
color:#fff;
}

/* Copyright */
.copyright-wrap{
background:#1c0d2e;
padding:15px 0;
margin-top:40px;
}

.copyright-text{
color:#ccc;
font-size:14px;
}

/* ---------- Responsive ---------- */

@media (max-width:992px){

.footer-top .row{
row-gap:30px;
}

}

@media (max-width:768px){

.footer-bg{
text-align:center;
}

.f-contact li{
justify-content:center;
}

.footer-social{
margin-top:15px;
}

.footer-social a{
margin:0 8px;
}

}

@media (max-width:576px){

.footer-bg{
padding-top:40px;
}

.footer-bg h2{
font-size:18px;
}

.copyright-text{
font-size:13px;
}

}




/* Contact Icons */
.f-contact li i{
color:#FFD700 !important;
font-size:18px;
}

/* Social Icons */
.footer-social a i{
color:#FFD700 !important;
font-size:18px;
transition:0.3s;
}

.footer-social a i:hover{
color:#ffffff !important;
}






/* Section */
.why-choose-section{
padding:80px 20px;
background:#f9f9f9;
}

/* Container */
.why-container{
max-width:1200px;
margin:auto;
text-align:center;
}

/* Heading */
.why-heading{
font-size:40px;
color:#4B2475;
margin-bottom:10px;
}

.why-subheading{
font-size:16px;
color:#666;
margin-bottom:50px;
}

/* Grid */
.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

/* Box */
.why-box{
background:#fff;
padding:30px 20px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:0.3s;
}

.why-box:hover{
transform:translateY(-8px);
}

/* Icon */
.why-icon{
font-size:40px;
margin-bottom:15px;
}

/* Title */
.why-box h3{
font-size:20px;
color:#4B2475;
margin-bottom:10px;
}

/* Text */
.why-box p{
font-size:15px;
color:#555;
line-height:1.6;
}

/* ---------- Responsive ---------- */

@media (max-width:992px){

.why-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:600px){

.why-grid{
grid-template-columns:1fr;
}

.why-heading{
font-size:30px;
}

.why-subheading{
font-size:14px;
margin-bottom:30px;
}

.why-box{
padding:25px 18px;
}

}





.contact-layout1{
background:#f8f5ff; /* light purple background */
}

.contact-card{
transition:0.4s;
border:1px solid #eee;
}

.contact-card:hover{
transform:translateY(-8px);
box-shadow:0 12px 30px rgba(0,0,0,0.08);
border-color:#d4af37; /* golden border on hover */
}

/* Icon Circle */
.contact-icon{
width:65px;
height:65px;
background:linear-gradient(135deg,#5e2ced,#d4af37); /* purple + gold */
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
margin:auto;
}

/* Heading */
.contact-card h5{
color:#5e2ced; /* purple */
}

/* Links */
.contact-card a{
transition:0.3s;
}

.contact-card a:hover{
color:#d4af37 !important; /* golden hover */
}

/* Map Styling */
.map-container iframe{
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}



