/* =====================================================
   BASE RESET & GLOBAL RULES
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--para-color);
  background-color: var(--white-color);
  line-height: 1.6;
}


/* =====================================================
   THEME VARIABLES (AIRO PRIME LOGO BASED)
===================================================== */
:root {

  /* ===== Fonts ===== */
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Poppins', sans-serif;

  /* ===== Radius ===== */
  --radius-md: 8px;

  /* ===== Backgrounds ===== */
  --bg-color: #ffffff;
  --white-color: #ffffff;
  --dark-color: #0B1F3F;

  /* ===== Brand Colors (Logo Inspired 🔥) ===== */
  --heading-color: #1C4E8A;      /* Main Blue (Logo Text) */
  --primary-color: #1C4E8A;      /* Main Brand Color */
  --primary-hover-color: #163E6D;

  --sub-heading: #2F7FC1;        /* Light Blue Accent */
  --para-color: #5A6A7A;         /* Soft grey text */

  /* ===== Accent (Steel / Industrial Feel) ===== */
  --accent-color: #9AA4AF;       /* Grey from logo */
  --border-color: #E2E8F0;

  /* ===== Buttons ===== */
  --btn-bg-color: #1C4E8A;
  --btn-hover-color: #163E6D;
  --btn-text-color: #ffffff;

  /* ===== Header & Footer ===== */
  --header-color: #1C4E8A;
  --footer-background-color: #0B1F3F;

  /* ===== Supporting UI ===== */
  --supporting-color: #F4F8FC;

  /* ===== Shadows ===== */
  --box-shadow: rgba(28, 78, 138, 0.08) 0px 6px 24px;
  --box-shadow-hover: rgba(28, 78, 138, 0.25) 0px 20px 40px -10px;

  --btn-box-shadow: rgba(28, 78, 138, 0.35) 0px 10px 25px;

  --image-shadow: rgba(47, 127, 193, 0.25) 0px 8px 24px;

  /* ===== Gradient (Hero Section 🔥) ===== */
  --gradient-color: linear-gradient(
    135deg,
    #0B1F3F,
    #1C4E8A,
    #2F7FC1
  );
}

/* =====================================================
   TYPOGRAPHY SYSTEM
===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading-color);
  letter-spacing: 0.3px;
}

h1 { font-size: 3.2rem; font-weight: 700; }
h2 { font-size: 2.8rem; font-weight: 600; }
h3 { font-size: 2.4rem; font-weight: 600; }
h4 { font-size: 2.2rem; font-weight: 500; }
h5 { font-size: 2rem;  font-weight: 500; }
h6 { font-size: 1.8rem; font-weight: 400; }

p, li, a {
  font-size: 1.6rem;
  color: var(--para-color);
 
}

a {
  text-decoration: none;
}

/* =====================================================
   LAYOUT SYSTEM
===================================================== */
.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* =====================================================
   HERO IMAGE
===================================================== */
.hero-image {
  width: 100%;
  height: 45rem;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  color: var(--white-color);
}

/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background-color: var(--btn-bg-color);
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  box-shadow: var(--btn-box-shadow);
  transition: all 0.3s ease;
}

.btn a {
  color: white;
}

.btn:hover {
  background-color: var(--btn-hover-color);
}

.productBtn{
    display: inline-block;
    padding: 0.8rem 1.6rem;
    background-color: var(--btn-bg-color);
    color: white;
    font-size: 2rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    box-shadow: var(--btn-box-shadow);
    transition: all 0.3s ease;
}
/* =====================================================
   CARD / BOX
===================================================== */
.card {
  background-color: var(--white-color);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: var(--box-shadow-hover);
}
/***** all page common image *****/


/* Hero Image */
.commonImage {
    width: 100%;
    height: 350px;
    /* margin-top: 20px; */
    background-image: linear-gradient(to right, rgba(0,0,0,0.6)),
                      url("../images/common\ image\ 2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: end;
    justify-content: start;
    
    
}

.commonImage h2 {
    color: var(--white-color);
    font-size: 3.2rem;
    font-weight: 700;
   
}
/* Mobile */
@media (max-width: 768px) {
    #header {
        height: 60px;
    }

    .commonImage {
        margin-top: 35px;
    }
}

.contactUsCommonImage {
    width: 100%;
    height: 350px;
    /* margin-top: 20px; */
    background-image: linear-gradient(to right, rgba(0,0,0,0.6)),
                      url("../images/contact\ us\ common\ image.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: end;
    justify-content: start;
    
    
}

.contactUsCommonImage h2 {
    color: var(--white-color);
    font-size: 3.2rem;
    font-weight: 700;
   
}
/* Mobile */
@media (max-width: 768px) {
    #header {
        height: 60px;
    }

    .contactUsCommonImage {
        margin-top: 35px;
    }
}

/***** End all page common image *****/


/***** header section *****/ 

.header{
    position: fixed;    
    z-index: 1000;
    width: 100%;   
    box-shadow: 1px 2px 15px 2px var(--supporting-color);    
    padding: 0 1rem;   
    background: white;
   

   }

 .nav-item {    
    text-transform: capitalize;
    padding: 5px 15px;       
    font-weight: 600;   

 }

.nav-link {
    color: var(--heading-color);
    font-weight: 600;
    font-size: 2.2rem;
}

.nav-link:hover{
    color: var(--circle-color);
}
.header.scrolled {
    background-color: white;
    box-shadow: 0 6px 20px rgba(15,42,82,0.15);
    transition: background-color 0.3s ease;    
    color:var(--btn-bg-color);
   
}
.header.scrolled .nav-link,
.header.scrolled .nav-item {
    color: var(--btn-bg-color);   /* Dark Blue */
    font-weight: 600;
    color: #16356F;
}
.header.scrolled .nav-link:hover {
    color: var(--btn-hover-color);  
    font-weight: 600;
}

.navbar-toggler{
    border: none;
    outline: none;
    font-size: 2.4rem;
    color:white;  
    
}

.navbar-toggler .nav-item .nav-link{
   border-bottom: 2rem solid var(--header-color);
}
/* Hamburger icon color → black */
.navbar-toggler-icon {
  width: 1.5em;
  height: 1.5em;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='green' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

/* Hover effect (optional) */
.navbar-toggler:hover .navbar-toggler-icon {
  opacity: 0.7;
}

.headerBtn{
    background-color: var(--btn-bg-color);
    color: var(--white-color);
    padding: 0.8rem 1.5rem;
    font-size: 2rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    box-shadow: var(--btn-box-shadow);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    /* background-color: var(--dark-color); */
}

.headerBtn:hover{
    background-color: var(--btn-hover-color);
    color: white;
}

/* ===== Dropdown Container ===== */
.dropdown-menu {
  border: none;
  border-radius: 10px;
  padding: 12px 0;
  min-width: 260px;
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  animation: fadeUp 0.3s ease;
}

/* ===== Animation ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Dropdown Items ===== */
.dropdown-item {
  font-size: 14px;
  padding: 5px 10px;
  color: #5A6A7A;
  transition: all 0.3s ease;
  position: relative;
}

/* Left Border Effect */
.dropdown-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: #1C4E8A;
  opacity: 0;
  transition: all 0.3s ease;
}

/* Hover Effect 🔥 */
.dropdown-item:hover {
  background: #F4F8FC;
  color: #1C4E8A;
  padding-left: 22px;
}

.dropdown-item:hover::before {
  opacity: 1;
}

/* ===== Dropdown Arrow Fix ===== */
.nav-link.dropdown-toggle::after {
  margin-left: 6px;
}

/* ===== Desktop Hover Open ===== */

/***** End header section *****/

/***** footer section *****/  
.footer{
    color: var(--white-color);
    position:relative;
    padding: 2rem 1rem;
    border-top: 0.6rem solid var(--btn-bg-color);  
    background-color:#F8FAFC;
    
   
   
}

.footer .dropdown-item{
  padding: 0.2rem 0;
}

.footer .dropdown-item:hover{
  background-color: transparent;
  color: var(--btn-bg-color);
  padding-left: 0.8rem;
}


.socialMedia {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;  
    
}

 .socialIcon{
    width: 4rem;
    height: 4rem;
    padding: 0.8rem;
  }
.socialIcon a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--heading-color);
    color: var(--white-color);
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    transition: transform ease-in 0.3s ;
    -webkit-transition: transform ease-in 0.3s ;
    -moz-transition: transform ease-in 0.3s ;
    -ms-transition: transform ease-in 0.3s ;
    -o-transition: transform ease-in 0.3s ;
}
.socialMedia {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
    font-size: 2rem;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}
.socialIcon{
    padding: 0.8rem;
    background-color: var(--heading-color);
    width: 4rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    transition: transform ease-in 0.3s ;
    -webkit-transition: transform ease-in 0.3s ;
    -moz-transition: transform ease-in 0.3s ;
    -ms-transition: transform ease-in 0.3s ;
    -o-transition: transform ease-in 0.3s ;
}

.socialIcon:hover{
    transform: translateY(-1rem);
    -webkit-transform: translateY(-1rem);
    -moz-transform: translateY(-1rem);
    -ms-transform: translateY(-1rem);
    -o-transform: translateY(-1rem);
}


.footerheading h3{
    color: var(--heading-color);
    font-weight: 600;
}

/* .footerheading p{
    font-size: 1.8rem;
    font-weight: 500;
} */

.footerLastSection{
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 0.2rem solid var(--heading-color);
    padding: 0.5rem 0;
}
.whatsapp-float{
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: all 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover{
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 15px 40px rgba(37,211,102,0.6);
}

/* Pulse Animation */
.whatsapp-float::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: whatsappPulse 2s infinite;
  z-index: -1;
}

@keyframes whatsappPulse{
  0%{
    transform: scale(1);
    opacity: 0.7;
  }
  70%{
    transform: scale(1.6);
    opacity: 0;
  }
  100%{
    opacity: 0;
  }
}

/* Mobile Optimization */
@media(max-width:768px){
  .whatsapp-float{
    width: 50px;
    height: 50px;
    font-size: 22px;
    bottom: 15px;
    right: 15px;
  }
}
.userRequiredForm {
  font-size: 2rem;
  
  color: #ffffff;
  animation: glowPulse 2.2s ease-in-out infinite;
}
.userRequiredForm a{
    color: white;
    font-weight: 800;
}
@keyframes glowPulse {
  0% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(124, 197, 54, 0);
  }
  50% {
    transform: scale(1.05);
    text-shadow: 
      0 0 10px rgba(124, 197, 54, 0.7),
      0 0 20px rgba(124, 197, 54, 0.4);
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(124, 197, 54, 0);
  }
}

.footer-links {
  list-style: none;   /* bullet hata dega */
  padding-left: 0;    /* left gap bhi remove */
  margin: 0;
}

.footer-links li {
  list-style: none;   /* extra safety */
}
/***** End footer section *****/


/***** hero section start *****/  

.main {
  position: relative;
  width: 100%;
  height: 100vh;  
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
 background:
  linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.85) 25%,
    rgba(0, 0, 0, 0.65) 50%,
    rgba(0, 0, 0, 0.35) 70%,
    rgba(0, 0, 0, 0.0) 100%
  ),
  url("../images/hero section image.png");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
 
 
}

.hero-section {   
  width: 100%;
  padding: 2rem;
  /* background-color: rgba(15, 42, 82, 0.3); */
  text-align: left;
  }


.hero-section h1 {
  font-size: 5.2rem;
  color: white;
  font-weight: 800;
  margin-bottom: 1rem;
  width: 80%;
}


.hero-section p {
  color: var(--para-color);
  font-weight: 400;
  margin-bottom: 3rem;
  max-width: 120rem;
}

.dual-button{
    display: flex;    
    /* padding: 1rem 1rem; */
    background-color: transparent;
   
    border-radius: 2rem;
    -webkit-border-radius: 2rem;
    -moz-border-radius: 2rem;
    -ms-border-radius: 2rem;
    -o-border-radius: 2rem;
    font-weight: bold;     
    gap: 2rem;
    
    
  }

.left-btn{
    border: none;
    outline: none;
    padding:0.8rem 1.6rem;
    border-radius: 2rem;
    font-weight: 600;    
    background: var(--dark-color);
    color: var(--white-color);
    transition: background 0.3s linear;
    cursor: pointer;
    font-size: 2rem;
    
}
.left-btn:hover{
    background: var(--heading-color);
    color: white;
    
    
}

.right-btn{
    border: none;
    outline: none;
   padding: 0.8rem 1.6rem;
    border-radius: 2rem;
    -webkit-border-radius: 2rem;
    -moz-border-radius: 2rem;
    -ms-border-radius: 2rem;
    -o-border-radius: 2rem;
    font-weight: 600;
    background-color:var(--btn-bg-color);
    color:var(--white-color);
    transition: background 0.3s linear;
    -webkit-transition: background 0.3s linear;
    -moz-transition: background 0.3s linear;
    -ms-transition: background 0.3s linear;
    -o-transition: background 0.3s linear;
    /* border: 0.2rem solid  white; */
    font-size: 2rem;
}

.right-btn a{
  color: white;
}
.right-btn:hover{
   background-color: var(--btn-hover-color);
   color: white;
    
}



.fa-solid{
    font-size: 1.8rem;
    color: var(--white-color);
    font-weight: 600;
    /* margin-right: 1rem; */
}

/***** end hero section*****/  
/***** home page about us section *****/ 
.about-section {
  padding: 80px 0;
  background: #ffffff;
}

/* Image */
.about-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Content *


.about-content {
  padding-left: 20px;
}

/* Tag */
.about-tag {
  display: inline-block;
  color: #1C4E8A;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.8rem;
}

/* Heading */
.about-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

/* Text */
.about-content p {
  color: #5A6A7A;
  margin-bottom: 15px;
}

/* Button */
.about-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: #1C4E8A;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  background: #0B1F3F;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-content {
    padding-left: 0;
    margin-top: 30px;
    text-align: center;
  }

  .about-content h2 {
    font-size: 26px;
  }
}

/***** End home page about us section *****/
/***** why choose us *****/  
.why-section {
  padding: 80px 0;
  background: #F4F8FC;
  
}

/* Tag */
.why-tag {
  color: #1C4E8A;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1.8rem;
}

/* Cards */
.why-card {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  height: 100%;
}

/* Icon */
.why-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

/* Hover Effect 🔥 */
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Heading */
.why-card h4 {
  margin-bottom: 10px;
}

/* Text */

/* Responsive */
@media (max-width: 768px) {
  .why-card {
    margin-bottom: 20px;
  }
}

/***** End why choose us *****/
/***** our products *****/  
.products-section {
  padding: 80px 0;
  background: #ffffff;
}

/* Tag */
.product-tag {
  color: #1C4E8A;
  font-weight: 600;
  font-size: 1.8rem;
}

/* Card */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s;
}

/* Content */
.product-content {
  padding: 15px;
  background: #fff;
}

.product-content h4 {
  margin-bottom: 8px;
}

.product-content a {
  color: white;
  font-size: 14px;
  text-decoration: none;
}

/* Hover Effect 🔥 */
.product-card:hover img {
  transform: scale(1.1);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Button */
.view-all-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #1C4E8A;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.view-all-btn:hover {
  background: #0B1F3F;
}

/* Responsive */
@media (max-width: 768px) {
  .product-card {
    margin-bottom: 20px;
  }
}

/***** End our products *****/
/***** our services *****/ 
.service-section {
  padding: 80px 0;
  background: #F4F8FC;
}

/* Tag */
.service-tag {
  color: #1C4E8A;
  font-weight: 600;
  font-size: 1.8rem;
}

/* Card */
.service-card {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  margin-bottom: 25px;
}

/* Image */
.service-img {
  border: 2px solid #9BE000; /* green border like reference */
  padding: 10px;
}

.service-img img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

/* Title */
.service-card h4 {
  margin-top: 15px;
  font-size: 18px;
}

/* Corner Icon */
.corner-icon {
  position: absolute;
  top: 0;
  left: 0;
  background: #1C4E8A;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.corner-icon i {
  font-size: 20px;
}

/* Hover */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .service-img img {
    height: auto;
  }
}

/***** End our services *****/

/***** HOME PAGE CSS *****/ 

/***** counter section *****/ 
.stats-section {
  background: linear-gradient(135deg, #0B1F3F, #1C4E8A);
  padding: 80px 0;
  color: #fff;
}

.stat-box {
  padding: 20px;
}

.stat-box h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 5px;
  color: white;
}

.stat-box p {
  font-size: 15px;.cta-section {
  background: linear-gradient(135deg, #0B1F3F, #1C4E8A);
  padding: 80px 20px;
  color: #fff;
}

/* Heading */
.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Text */
.cta-section p {
  max-width: 600px;
  margin: 0 auto 25px;
  color: #dbe6f3;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Primary Button */
.cta-btn-primary {
  background: #2F7FC1;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn-primary:hover {
  background: #ffffff;
  color: #1C4E8A;
}

/* Outline Button */
.cta-btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn-outline:hover {
  background: #fff;
  color: #1C4E8A;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 26px;
  }
}
  color: #dbe6f3;
}

/* Hover effect */
.stat-box:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}
/***** End counter section *****/

/***** call to action *****/  

/* Section */
.cta-section {
  position: relative;
  padding: 100px 20px;
  background: radial-gradient(circle at top right, rgba(47,127,193,0.25), transparent 40%),
              linear-gradient(135deg, #08172E, #102E5C);
  overflow: hidden;
}

/* Glow Overlay 🔥 */
.cta-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(47,127,193,0.3), transparent 50%);
  top: 0;
  left: 0;
}

/* Content */
.cta-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* Tag */
.cta-tag {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 15px;
}

/* Heading */
.cta-section h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  color: white;
}

/* Text */
.cta-section p {
  max-width: 600px;
  margin: 0 auto 25px;
  color: #dbe6f3;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Primary Button */
.cta-btn-primary {
  background: #2F7FC1;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(47,127,193,0.4);
}

.cta-btn-primary:hover {
  background: #fff;
  color: #1C4E8A;
  transform: translateY(-3px);
}

/* Outline Button */
.cta-btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn-outline:hover {
  background: #fff;
  color: #1C4E8A;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-buttons {
    flex-wrap: nowrap;          /* 🔥 ek line me rakhega */
    gap: 10px;
  }

  .cta-buttons a {
    padding: 10px 14px;         /* 🔥 size chhota */
    font-size: 13px;
    white-space: nowrap;        /* text break na ho */
  }

  .cta-btn-primary,
  .cta-btn-outline {
    flex: 1;                    /* dono equal width */
    text-align: center;
  }

}
/***** End call to action *****/

/***** End hero section *****/

/***** End HOME PAGE CSS *****/
/***** our clients *****/
/* section */
.logo-track {
  display: flex;
  align-items: center;
  gap: 40px; /* premium spacing */
}


/* Tag */
.client-tag {
  color: #1C4E8A;
  font-weight: 600;
  font-size: 1.8rem;
}

/* Slider */
.logo-slider {
  overflow: hidden;
  position: relative;
}

/* Track */
.logo-track {
  display: flex;
  width: calc(250px * 20);
  animation: scroll 25s linear infinite;
}

/* Logo Box */
.logo {
  width: 200px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo Image */
.logo img {
  max-width: 200px;
  height: 80px;
  /* filter: grayscale(100%); */
  /* opacity: 0.7; */
  transition: 0.3s;
}

/* Hover */
/* .logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
} */

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.client-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 15px 0 20px;
}

.client-categories span {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  background: linear-gradient(135deg, #0B1F3F, #1C4E8A);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: default;
}

.client-categories span:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
/***** End our clients *****/
/***** End our clients *****/
/***** about us page *****/ 
.about-hero{
  height:400px;
  background:url('your-hero-image.png') center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(120deg,#0b2c4d,#000000);
  opacity:0.85;
}

.hero-content{
  position:relative;
  text-align:center;
  color:#fff;
}

.hero-content h1{
  font-size:52px;
  font-weight:700;
}

.hero-content p{
  margin-top:10px;
  font-size:18px;
  opacity:0.9;
}

/* ABOUT */
/* .about-section{
  padding:100px 20px;
} */

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.about-text h2{
  font-size:34px;
  color:#1C4E8A;
  margin-bottom:20px;
}

.about-text p{
  margin-bottom:18px;
  color:#555;
  line-height:1.7;
}

/* STATS */
.stats{
  display:flex;
  gap:40px;
  margin-top:30px;
}

.stat{
  background:#fff;
  padding:20px 25px;
  border-radius:15px;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.stat h3{
  color:#1C4E8A;
  font-size:26px;
}

.stat p{
  font-size:14px;
}

/* IMAGE */
.about-image img{
  width:100%;
  border-radius:25px;
  box-shadow:0 20px 40px rgba(0,0,0,0.1);
}


/* MISSION */


.mv-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;

}

.mv-card{
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.mv-card h3{
  color:#1C4E8A;
  margin-bottom:15px;
}

.mv-card p{
  color:#555;
  line-height:1.7;
}

/* CTA */


/* RESPONSIVE */
@media(max-width:768px){
  .about-grid,.mv-grid{
    grid-template-columns:1fr;
  }

  .service-grid{
    grid-template-columns:1fr;
  }

  .hero-content h1{
    font-size:34px;
  }

  .stats{
    flex-direction:column;
  }
}

/***** End about us page *****/

  /***** OUR CLIENTS  *****/ 
.clients-hero{
  height:300px;
  background:linear-gradient(120deg,#0b2c4d,#000);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
}

.clients-hero h1{
  font-size:42px;
}

.clients-hero p{
  margin-top:10px;
  opacity:0.8;
}

/* SECTION */
.clients-section{
  padding:80px 20px;
}

.section-title{
  text-align:center;
  margin-bottom:50px;
}

.section-title h2{
  font-size:32px;
  color:#1C4E8A;
}

.section-title p{
  color:#666;
}

/* GRID */
.clients-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.client-card{
  background:#fff;
  padding:25px;
  border-radius:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  height:120px;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
  transition:0.3s;
}

.client-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.client-card img{
  max-width:150px;
  max-height:60px;
  opacity:0.7;
  transition:0.3s;
}

.client-card img:hover{
  opacity:1;
  transform:scale(1.1);
}





/* ====== FORCE WIDTH FIX ====== */
.clients-section .container{
  max-width:100% !important;
  padding-left:10px !important;
  padding-right:10px !important;
}

/* ====== GRID ====== */
.clients-grid{
  display:grid !important;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
}

/* ====== CARD ====== */
.client-card{
  width:100%;
}

/* ====== TABLET ====== */
@media (max-width:991px){
  .clients-grid{
    grid-template-columns:repeat(3,1fr) !important;
  }
}

/* ====== 🔥 MOBILE MAIN FIX ====== */
@media (max-width:576px){
  .clients-grid{
    grid-template-columns:50% 50% !important;
  }
}
  /***** End OUR CLIENTS  *****/

/***** loader *****/
#ai-loader{
  position: fixed;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,#0F172A,#020617);
  top: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-box{
  text-align: center;
}

.logo{
  font-size: 28px;
  font-weight: 700;
  color: #38BDF8;
  letter-spacing: 2px;
  animation: fade 1.5s infinite alternate;
}

.ring{
  width: 70px;
  height: 70px;
  margin: 20px auto 0;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.1);
  border-top: 3px solid #38BDF8;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 20px rgba(56,189,248,0.3);
}

@keyframes spin{
  100%{
    transform: rotate(360deg);
  }
}

@keyframes fade{
  from{opacity: 0.5;}
  to{opacity: 1;}
}

/***** End loader *****/



  /***** testinomial final *****/ 
  .testimonial-section{
  padding:40px 20px;
  background: linear-gradient(135deg,#F8FAFC,#EEF2F7);
}

/* heading */
.testi-tag{
  display:inline-block;
  font-size:12px;
  color:#3B82F6;
  background:#E0ECFF;
  padding:6px 14px;
  border-radius:20px;
  margin-bottom:10px;
  font-weight:500;
}

.testimonial-section h2{
  font-size:34px;
  font-weight:700;
  color:#0f172a;
}

/* grid */
.testi-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* card */
.testi-card{
  background:#fff;
  padding:28px;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,0.06);
  transition:0.35s ease;
  position:relative;
  overflow:hidden;
}

/* quote icon */
.testi-card::before{
  content:"“";
  position:absolute;
  top:10px;
  left:15px;
  font-size:60px;
  color:#3B82F6;
  opacity:0.1;
  font-weight:700;
}

/* hover */
.testi-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

/* text */
.testi-card p{
  font-size:14px;
  color:#475569;
  margin-bottom:18px;
  line-height:1.6;
  position:relative;
  z-index:1;
}

/* name */
.testi-card h5{
  font-size:15px;
  font-weight:600;
  color:#1C4E8A;
  margin:0;
}

/* star rating */
.testi-card h5::before{
  content:"★★★★★";
  display:block;
  font-size:12px;
  color:#FBBF24;
  margin-bottom:5px;
}

/* smooth carousel */
.carousel-item{
  transition: transform 0.6s ease-in-out;
}

/* hide arrows for clean UI */
.carousel-control-prev,
.carousel-control-next{
  display:none;
}

/* responsive */
@media(max-width:992px){
  .testi-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .testi-grid{
    grid-template-columns:1fr;
  }

  .testimonial-section h2{
    font-size:26px;
  }
}
  
  
  /***** End testinomial final *****/
  
  
/***** contact us page  *****/ 
/* ===== CONTACT SECTION PREMIUM ===== */

.contact-section{
  padding:40px 20px;
  background:
    radial-gradient(circle at 80% 20%, rgba(59,130,246,0.25), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(28,78,138,0.25), transparent 40%),
    linear-gradient(135deg, #08172E, #102E5C);
}

/* HEADING */
.heading h1{
  /* font-size:42px; */
  font-weight:700;
  letter-spacing:0.5px;
  position:relative;
  display:inline-block;
  color:#fff;
}
.commonheading h1{
  text-align: center;
  color:white;
}
.commonheading p{
  text-align: center;
  color:white;
 
  margin-top:12px;
}
.heading h1::after{
  content:"";
  width:70px;
  height:4px;
  background: linear-gradient(90deg,#3B82F6,#1C4E8A);
  display:block;
  margin:12px auto 0;
  border-radius:10px;
}

.heading p{
  color:white;

  margin-top:12px;
}

/* GRID */
.contact-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
}

/* CARD */
.card{
  padding:45px;
  border-radius:20px;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:0 20px 60px rgba(0,0,0,0.3);
  transition:0.4s ease;
  position:relative;
  overflow:hidden;
}

/* soft glow */
.card::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at top, rgba(59,130,246,0.15), transparent 60%);
  opacity:0;
  transition:0.4s;
  pointer-events: none;
}

.card:hover::before{
  opacity:1;
  
}
.card p a{
 color: white;
}
.card:hover{
  transform:translateY(-6px);
  -webkit-transform:translateY(-6px);
  -moz-transform:translateY(-6px);
  -ms-transform:translateY(-6px);
  -o-transform:translateY(-6px);
}

/* CARD TITLE */
.card h2{
  /* font-size:22px; */
  color:#fff;
  margin-bottom:20px;
}

/* INFO BOX */
.info-box{
  display:flex;
  gap:14px;
  padding:14px;
  border-radius:12px;
  transition:0.3s;
}

.info-box:hover{
  background: rgba(255,255,255,0.06);
  transform:translateX(5px);
  -webkit-transform:translateX(5px);
  -moz-transform:translateX(5px);
  -ms-transform:translateX(5px);
  -o-transform:translateX(5px);
}

/* ICON */
.icon{
  width:48px;
  height:48px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg,#3B82F6,#1C4E8A);
  color:#fff;
  font-size:18px;
  box-shadow:0 8px 20px rgba(59,130,246,0.4);
}

/* TEXT */
.info-box strong{
  font-size:14px;
  color:#e2e8f0;
}

.info-box p{
  /* font-size:13px; */
  color:white;
  margin:0;
}

/* FORM */
.form-group{
  margin-bottom:16px;
}

input, textarea{
  width:100%;
  padding:14px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  color:#fff;
  font-size:14px;
  transition:0.25s;
  backdrop-filter: blur(6px);
  resize:none;
}

input::placeholder,
textarea::placeholder{
  color:#94a3b8;
}

/* FOCUS */
input:focus, textarea:focus{
  border-color:#3B82F6;
  box-shadow:0 0 0 2px rgba(59,130,246,0.25);
  outline:none;
}

/* TEXTAREA */
textarea{
  height:130px;
}

/* BUTTON */


/* MAP */
.map{
  margin-top:80px;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,0.35);
  -webkit-border-radius:20px;
  -moz-border-radius:20px;
  -ms-border-radius:20px;
  -o-border-radius:20px;
}

iframe{
  width:100%;
  height:360px;
  border:0;
}

/* RESPONSIVE */
@media(max-width:768px){
  .contact-wrapper{
    grid-template-columns:1fr;
  }

  .heading h1{
    font-size:32px;
   
  }
  .card h2{
    text-align: center;
  }
  
element.style {
}
.card {
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}
}
/***** End gallery section *****/
/***** final gallery  *****/  
.gallery-section{
  padding:40px 20px;
  background:#F8FAFC;
}

/* card */
.gallery-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  transition:0.35s ease;
  text-align:center;
  position:relative;
}

/* image */
.gallery-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  transition:0.4s ease;
}

/* text */
.gallery-card p{
  font-size:14px;
  font-weight:600;
  color:#0f172a;
  padding:12px;
  margin:0;
}

/* hover effect */
.gallery-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* zoom effect */
.gallery-card:hover img{
  transform:scale(1.08);
}

/* overlay gradient */
.gallery-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.2), transparent);
  opacity:0;
  transition:0.3s;
}

.gallery-card:hover::after{
  opacity:1;
}

/* responsive spacing fix */
@media(max-width:768px){
  .gallery-card img{
    height:180px;
  }
}

/***** End final gallery css *****/

/***** products page  *****/ 
/* HERO */
.product-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #0B1F3F, #1C4E8A);
  color: #fff;
  text-align: center;
}

/* SECTION */
.product-section {
  padding: 60px 0;
}

/* IMAGE */
.product-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

/* CONTENT */
.product-content h2 {
  margin-bottom: 15px;
}

.product-content ul {
  padding-left: 20px;
}

.product-content ul li {
  margin-bottom: 8px;
}

/* BUTTON */
.btn-primary-custom {
  display: inline-block;
  background: #1C4E8A;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 15px;
  text-decoration: none;
  transition: 0.3s;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.btn-primary-custom:hover {
  background: #0B1F3F;
}



/***** End products page  *****/

/* =====================================================
   RESPONSIVE BREAKPOINTS
===================================================== */

/* --------- ≤ 1400px --------- */
@media (max-width: 1400px) {
  html { font-size: 60%; }
}

/* --------- ≤ 1200px --------- */
@media (max-width: 1200px) {
  html { font-size: 58%; }
  .container { padding: 1.5rem; }
}

/* --------- ≤ 992px (Tablet Landscape) --------- */
@media (max-width: 992px) {
  html { font-size: 56%; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }

  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
   .clients-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

/* --------- ≤ 768px (Tablet Portrait) --------- */
@media (max-width: 768px) {
  html { font-size: 54%; }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.4rem; }

 .main{
    height: auto;              /* ❌ 100vh hata diya */
    min-height: 60vh;          /* 👈 compact hero */
    padding: 7rem 0 5rem;      /* top-bottom spacing */
    background:
      linear-gradient(
        90deg,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.45) 60%,
        rgba(0,0,0,0.25) 100%
      ),
      url("../images/hero\ section\ image.png");
    background-size: cover;
    background-position: center;
  }

  .hero-section{
    text-align: center;        /* mobile me better */
    padding: 1.5rem;
  }

  .hero-section h3{
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }

  .hero-section h1{
    font-size: 3.2rem;
    width: 100%;
    line-height: 1.2;
  }

 .btn {
    display: inline-block;
    width: auto;              /* full width remove */
    max-width: 220px;         /* limit width */
    text-align: center;
    padding: 10px 12px;
    font-size: 1.6rem;
    margin: 0 auto;           /* center align */
  }
  .commonImage {
        height: 220px; /* height kam */
        background-position: center;
    }

    .commonImage h2 {
        font-size: 2rem; /* text chota */
    }
      
}



/* --------- ≤ 576px (Mobile) --------- */
@media (max-width: 576px) {
  html { font-size: 52%; }

  h1 { font-size: 2.4rem; }
  h2 { font-size: 2.1rem; }

  p, li, a { font-size: 1.5rem; }

  .btn {
    width: 100%;
    text-align: center;
  }

 .main{
    min-height: 52vh;   /* aur compact */
    padding: 6rem 0 4rem;
  }

  .hero-section h1{
    font-size: 2.6rem;
  }

  .hero-section h3{
    font-size: 1.2rem;
  }
 

}

/* --------- ≤ 400px (Small Mobile) --------- */
