/* ----------------------------------
   GLOBAL
---------------------------------- */
body{
    font-family: newsreadr;
  }

/* Button Styling */
.btn {
  background-color: #0095DA;
  color: #ffffff;
  border-color: #ffffff;
  border-radius: 10px;
  padding: 10px 25px;
  transition: 0.3s;
}

.btn:hover {
  background-color: #ffffff;
  color: #0095DA;
  border-color: #0095DA;
  transform: translateY(-3px);
  opacity: 0.9;
}


/* ----------------------------------
   Navbar
---------------------------------- */
 /* Top Navbar */
.top-navbar{
  background: linear-gradient(90deg, #EC1F25, #0095DA);
  font-size: 14px;
}

.top-navbar a{
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.top-navbar a:hover{
  color: #ffecec;
}

.top-social i,
.top-contact i{
  margin-right: 6px;
}

/* Common Color */
  :root {
    --white: #ffffff;
  }
  
  /* Main Navbar */
  .main-navbar {
    background-color: var(--white);
  }

  /* Logo Style */
  .logo-switcher{
  position: relative;
  width: 170px;      /* dono ke liye same container */
  height: 55px;
}
  
.logo-switcher .logo-img{
  position: absolute;
  top: 0;
  left: 0;
  width: 170px;      /* SAME WIDTH */
  height: 55px;      /* SAME HEIGHT */
  object-fit: contain; /* image cut nahi hogi */
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.logo-switcher .logo-img.active{
  opacity: 1;
}

/* Nav Links Hover */
.nav-link {
  color: #000000 !important;
  transition: 0.3s;
}

.nav-link:hover {
  color: #0095DA !important;
}


/* ----------------------------------
   Hero
---------------------------------- */
/* Center Text Box */
.carousel-caption-center {
  height: 460px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  padding: 0 15px;
}
.img {
  height: 460px;
}
.opacity{
  background: rgba(0, 149, 218, 10); 
}


/* ----------------------------------
   About
---------------------------------- */
.about-subtitle {
  color: #0095DA;
  letter-spacing: 1px;
}

.about-list {
  list-style: none;
  padding-left: 0;
}

.about-list li {
  padding-left: 24px;
  margin-bottom: 10px;
  position: relative;
}

.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0095DA;
  font-weight: bold;
}


/* ----------------------------------
   Why Choose Us?
---------------------------------- */
/* Image styling */
.why-image {
  object-fit: cover;
  height: 500px;
  width: 100%;
}

/* Title Color */
.why-title-small {
  color: #0095DA;
}

/* Feature Icons */
.feature-icon {
  color: #0095DA;
}

/* Feature Heading */
.feature-heading {
  color: #0095DA;
}


/* ----------------------------------
   Our Product
---------------------------------- */
/* Section Subtitle */
/*.product-sectio {
  background: #F5FCFF;
}*/
.section-subtitle {
  color: #0095DA;
}

/* Make all project images same size */
.project-img {
  height: 220px;              /* 🔹 All images same height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;        /* 🔹 Full Image Showing */
}


/* ----------------------------------
   Footer
---------------------------------- */
/* Footer Background */
.footer-section {
    background-color: #F5FCFF;
}

/* Footer Headings */
.footer-section h5 {
    color: #0095DA;
}

.footer-item{
  color: #000000;
}

.footer-item:hover{
  color: #0095DA;
}

.whatsapp-icon{
  position:fixed;
  bottom:20px;
  right:20px;
  width:60px;
  height:60px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 5px 15px rgba(0,0,0,0.3);
  z-index:999;
}

.whatsapp-icon img{
  width:35px;
  }

.whatsapp-box{
  position:fixed;
  bottom:90px;
  right:20px;
  width:300px;
  background:#fff;
  border-radius:10px;
  box-shadow:0 5px 20px rgba(0,0,0,0.3);
  display:none;
  overflow:hidden;
  font-family:sans-serif;
}

.whatsapp-header{
  background:#075E54;
  color:#fff;
  padding:10px;
  display:flex;
  align-items:center;
  gap:10px;
}

.whatsapp-header img{
  width:35px;
  }

.whatsapp-header h4{
  margin:0;
  font-size:14px;
  }

.whatsapp-header span{
  font-size:12px;
  }

.whatsapp-header button{
  margin-left:auto;
  background:none;
  border:none;
  color:white;
  font-size:18px;
  cursor:pointer;
  }

.whatsapp-body{
  background:#ECE5DD;
  padding:15px;
  font-size:14px;
  }

.whatsapp-footer{
  display:flex;
  border-top:1px solid #ddd;
  }

.whatsapp-footer input{
  flex:1;
  border:none;
  padding:10px;
  outline:none;
  }

.whatsapp-footer button{
  background:#25D366;
  border:none;
  color:white;
  padding:10px 15px;
  cursor:pointer;
  }


/* ----------------------------------
   All Page Hero Section
---------------------------------- */
.hero-section {
  min-height: 460px;
  background: linear-gradient(
    135deg,
    #0095DA 0%,
    #00B4FF 50%,
    #E6F7FF 100%
  );
  position: relative;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}


/* ----------------------------------
   Contact Page
---------------------------------- */
/* Theme Colors */
:root {
  --primary-blue: #B3E5F9;
  --accent-red: #dc3545;
  --light-bg: #f8f9fa;
  --off-black: #2c2c2c;   /* ✅ Off Black Color */
}

/* Top Section */
.contact-top {
  background: #B3E5F9;
  color: var(--off-black);
  padding: 5px 0;
}

/* Main Contact Section */
.contact-section {
  margin-bottom: 10px;
}

/* Contact Info Box */
.contact-info {
  background: #B3E5F9;
  padding: 30px;
  padding-top: 10px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-info h4 {
  color: var(--off-black);
  margin-bottom: 25px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 20px;
  color: #778899;
}

.contact-info strong {
  color: #696969;
}

/* Contact Form */
.contact-form {
  background: #B3E5F9;
  padding: 30px;
  padding-top: 10px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-form h4 {
  color: var(--off-black);
  margin-bottom: 25px;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 5px;
  display: inline-block;
  color: #696969;
}

/* Map Section */
.map-section iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}


/* ----------------------------------
   All Product Img Page
---------------------------------- */
/* Section Title */
.product-title {
  color: #198DBF;
}

.product-subtitle {
  max-width: 800px;
  color: #495057;
  opacity: 0.9;
}

/* Product Image Container */
.product-img {
  height: 300px;
  position: relative;
}

/* Image title overlay */
.img-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  padding: 6px 0;
}


/* ------------------------------------------
   Privacy Policy And Term & COnditions Page
------------------------------------------- */
.privacy-policy, .terms-conditions{
  background-color: #FAFDFF;
}

.terms-card {
  background: #ffffff;
  border-left: 5px solid #0095DA;
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.terms-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #0095DA;
}

.terms-card p {
  margin: 0;
  color: #555;
  line-height: 1.7;
}

.terms-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 149, 218, 0.15);
}

.contact-card {
  background: linear-gradient(135deg, #E6F7FF, #FAFDFF);
}


/* ----------------------------------
   Projects Img Page
---------------------------------- */
  .gallery-section{
background:#f8f9fa;
}

/* subtitle */

.gallery-subtitle{
color:#198DBF;
font-weight:600;
letter-spacing:1px;
}

/* heading */

.gallery-section p{
color:black;
}

/* card */

.gallery-card{
    background:#fff;
    padding:15px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.gallery-card img{
    width:100%;
    height:200px;
    object-fit:contain;
}

.product-name{
    font-size:18px;
    font-weight:600;
    color:#333;
    text-align: center;
}

/* hover */
.gallery-card:hover img{
transform:scale(1.1);
}

/* hover border */

.gallery-card:hover{
box-shadow:0 10px 30px rgba(25,141,191,0.4);
}

.popup-gallery{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
display:none;
justify-content:center;
align-items:center;
z-index:9999;
}

.popup-gallery img{
max-width:80%;
max-height:80%;
}

.close-btn{
position:absolute;
top:30px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;
}

.prev,.next{
position:absolute;
top:50%;
transform:translateY(-50%);
font-size:40px;
background:none;
border:none;
color:white;
cursor:pointer;
}

.prev{
left:40px;
}

.next{
right:40px;
}

