@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif !important;

}

h1,
h2,
h3,
h4,
h5,
h6,
p,
input,
button,
a {
    font-family: 'Poppins', sans-serif !important;
}

/* Root Variables */
:root {
    --primary-color: #26519a;
    --secondary-color: #ffc107;
    --hover-light: #f0f8ff;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
}

/* Top Bar */
.top-bar {
    /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); */
    background-color: #26519a;
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
}

.contact-item:hover {
    color: var(--hover-light);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--hover-light);
    transform: translateY(-2px);
    color: #1a4d66;
    /* You can also make this a variable if reused */
}

/* Header */
.main-header {
    background: #e1f3fd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -2px;
}

.logo:hover {
    color: var(--primary-color);
}

.tagline {
    font-size: 12px;
    color: var(--text-light);
    margin-top: -5px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Navbar */
.navbar-nav {
    gap: 30px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    padding: 10px 0 !important;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn-contact {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border: 2px solid var(--primary-color) !important;
    padding: 12px 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}

.btn-catalogue {
    background: transparent;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    padding: 10px 25px;
    font-weight: 500;
    text-transform: uppercase !important;
    letter-spacing: 0.5px;
    border-radius: 0;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.btn-catalogue:hover {
    background: var(--secondary-color) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    border: 2px solid var(--secondary-color) !important;
}

.btn-catalogue i {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .navbar-nav {
        gap: 0;
        margin-top: 20px;
    }

    .nav-link {
        padding: 15px 0 !important;
        border-bottom: 1px solid #eee;
    }

    .btn-contact,
    .btn-catalogue {
        margin: 10px 0;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 36px;
    }

    .contact-info {
        font-size: 12px;
    }

    .social-icon {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
}

#hero .carousel-item {
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.testimonial4_control_button{
  margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 25%,
     rgba(0, 0, 0, 0.51) 50%,
      rgba(0, 0, 0, 0) 75%,
    rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}
.product-card a{
  text-decoration: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    top: 50%;
    transform: translateY(60%);
    color: var(--white);
    max-width: 750px;
}

/* initial hidden state for elements */
.hero-content h1,
.hero-content p,
.hero-content a {
    opacity: 0;
    transform: translateY(40px);
}

/* keyframe */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* animate when .animate is present */
.hero-content.animate h1 {
    color: #ffffff;
    font-size: 52px;
    line-height: 1.2em;
    font-weight: 700;
    animation: fadeUp 700ms cubic-bezier(.2, .9, .3, 1) forwards;
}

.hero-content.animate p {
    font-size: 18px;
    animation: fadeUp 700ms cubic-bezier(.2, .9, .3, 1) forwards;
    animation-delay: 150ms;
}

.hero-content.animate a:nth-of-type(1) {
    animation: fadeUp 700ms cubic-bezier(.2, .9, .3, 1) forwards;
    animation-delay: 330ms;
}

.hero-content.animate a:nth-of-type(2) {
    animation: fadeUp 700ms cubic-bezier(.2, .9, .3, 1) forwards;
    animation-delay: 480ms;
}

/* buttons */
.btn-custom {
    padding: 12px 25px !important;
    display: inline-flex !important;
    gap: 14px;
    align-items: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-right: 20px;
    margin-top: 30px;
}

.btn-enquiry {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border: none;
}

.btn-enquiry:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-2px) !important;
}

.btn-product {
    background: transparent;
    color: #fff !important;
    border: 2px solid #fff !important;
}

.btn-product:hover {
    background: var(--secondary-color) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* arrows */
.custom-arrow {
    background: var(--white);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.custom-arrow:hover {
    background: var(--hover-light);
    color: var(--secondary-color);
}

.carousel-control-prev-1 {
    left: -60px !important;
}


.business-info {
 --dot-bg: rgb(255, 255, 255);
  --dot-color: rgb(0, 0, 0);
  --dot-size: 1px;
  --dot-space: 22px;
	background:
		linear-gradient(90deg, var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center / var(--dot-space) var(--dot-space),
		linear-gradient(var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center / var(--dot-space) var(--dot-space),
		var(--dot-color);
  padding: 4rem 2rem;
  font-family: 'Poppins', sans-serif;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 1.8rem 1.5rem;
  border-radius: 12px;
  border: 1px solid #e5eaf0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  border-color: #2c5f7a;
}

.info-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c5f7a;
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-text p {
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin: 0;
  transition: color 0.3s ease;
}

.info-item:hover .info-text p {
  color: #2c5f7a;
}

.info-icon {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: #f0f6fa;
  border: 1px solid #d6e4ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #2c5f7a;
  transition: all 0.3s ease;
}

.info-item:hover .info-icon {
  background: #2c5f7a;
  color: #fff;
  border-color: #2c5f7a;
}


 .product-section {
      --primary-color: #2c5f7a;
      --secondary-color: #ffc107;
      --hover-light: #ffdd57;
      --white: #ffffff;
      --text-dark: #333;
      
      background: var(--primary-color);
      padding: 70px 0;
      color: var(--white);
    }

    .section-header .subtitle {
      color: var(--secondary-color);
      font-weight: 600;
      text-transform: uppercase;
      font-size: 0.9rem;
      letter-spacing: 1px;
    }

    .section-header .title {
      font-size: 2.5rem;
      font-weight: 700;
      margin: 10px 0;
    }

    .section-header .desc {
      max-width: 700px;
      margin: 0 auto;
      font-size: 1rem;
      color: rgba(255,255,255,0.85);
    }

    .carousel-container {
      position: relative;
      overflow: hidden;

    }

    .product-row {
      display: flex;
      transition: transform 0.5s ease;
      gap: 20px;
    }

    .product-card {
      background: var(--white);
      border-radius: 12px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
      transition: all 0.3s ease;
      flex: 0 0 calc(25% - 15px);
      min-width: 250px;
      padding: 0px;
    }

    .product-card img {
      width: 100%;
      height: 300px;
      object-fit: fill;
      transition: transform 0.3s ease;
      background-position: bottom;
    }

    .product-card .product-info {
      padding: 20px;
    }

    .product-card h5 {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-dark);
      margin: 0;
    }

    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    }

    .product-card:hover img {
      transform: scale(1.05);
    }

    .carousel-control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: var(--secondary-color);
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.2rem;
      transition: all 0.3s ease;
      z-index: 10;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .carousel-control:hover {
      background: var(--hover-light);
      color: var(--primary-color);
      transform: translateY(-50%) scale(1.1);
    }

    .carousel-control.prev {
      left: 10px;
    }

    .carousel-control.next {
      right: 10px;
    }

    .carousel-control:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    .carousel-control:disabled:hover {
      background: var(--secondary-color);
      color: var(--white);
      transform: translateY(-50%) scale(1);
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .product-card {
        flex: 0 0 calc(33.333% - 15px);
      }
    }

    @media (max-width: 768px) {
      .carousel-container {
        margin: 0 20px;
      }
      
      .product-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 200px;
      }
      
      .product-row {
        gap: 15px;
      }
    }

    @media (max-width: 480px) {
      .product-card {
        flex: 0 0 calc(100% - 10px);
        min-width: 280px;
      }
      
      .carousel-container {
        margin: 0 10px;
      }
    }

    .choose-us-section {
  background: #f0fbff;
  color: var(--text-dark);
  padding: 100px;
}

.choose-us-section .subtitle {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.choose-us-section .desc {
  font-size: 1rem;
  color: rgba(0,0,0,0.7);
}

.choose-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  background: var(--white);
  transition: all 0.3s ease;
  cursor: pointer;
}

.choose-card .icon {
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.choose-card h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.choose-card p {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.7);
}

.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  border-color: var(--primary-color);
}

.choose-card:hover .icon {
  color: var(--secondary-color);
}

.middle-line{
    width: 2px;
    height: 100%;
    background-color: #222;
}


/* About Section */
.about-section {
  background:#f0fbff;
  position: relative;
  overflow: hidden;
}


.about-img-wrapper img{
  width: 100%;
}

/* Headings & Paragraphs */
.about-section h2 {
  font-weight: 800;
  color: var(--primary-color);
  font-size: 2.2rem;
}

.about-section p {
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Features List */
.about-features li {
  font-weight: 500;
  margin-bottom: 10px;
  color: #333;
  font-size: 1rem;
}

/* Image Hover Effect */


/* Button Hover Effect */
.btn-hover {
  transition: all 0.4s ease;
}

.btn-hover:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.learn-more-btn{
  background-color: var(--primary-color) !important;
  color: #fff !important;
}


.footer-section {
    background-color: var(--primary-color);
    font-size: 15px;
    line-height: 1.7;
}

.footer-logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--white);
}
.footer-logo img{
    width: 300px;
    height: auto;
    border-radius: 12px;
}

.footer-about {
    margin: 15px 0;
    color:#fff;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 5px;
}
.footer-title p {
  display: flex !important;
}

.footer-section a {
    color:#fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section a:hover {
    color: var(--hover-light);
    padding-left: 3px;
}

.footer-social a {
    color: var(--white);
    font-size: 16px;
    margin-right: 10px;
    display: inline-block;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    font-size: 14px;
    color:#fff;
}

.footer-bottom a {
    color: var(--white);
    font-weight: 500;
}
.footer-bottom a:hover {
    color: var(--secondary-color);
}



/* Header Section */
.industries-header {
    background-color: var(--primary-color);
}
.industries-header .sub-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--hover-light);
}
.industries-header .section-title {
    font-size: 36px;
    font-weight: 700;
    margin: 15px 0;
}
.industries-header .section-desc {
    max-width: 840px;
    margin: auto;
    color: var(--white);
    opacity: 0.9;
}
.new-why-sec{
  display: flex;
  align-items: center;
    justify-content: space-around;
}
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* aligns dropdown under the parent */
  }
    .dropdown-toggle::after {
    display: none !important;
  }
  .dropdown-toggle::after:hover {
    display: none !important;
  }
      .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
        top: 40px;
        left: -44px;
        padding: auto;20px
    }
    .dropdown-item {
      color: #fff !important;
    }
    
     .dropdown-item:hover {
      color: #000000ff !important;
      background-color: var(--secondary-color);
    }

    .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    background: #254f99;
}
/* Card Section */
.industry-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}
.industry-card img {
    width: 100%;
    display: block;
}
.industry-card .card-body {
    padding: 15px;
}
.industry-card .card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}
.industry-card .card-text {
    font-size: 14px;
    color: var(--text-light);
}
.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.industries-cards {
  background-color: var(--primary-color);
  padding: 40px 0px;
  padding-bottom: 70px;
}




.heading {
    text-align: center;
    color: #454343;
    font-size: 30px;
    font-weight: 700;
    position: relative;
    margin-bottom: 70px;
    text-transform: uppercase;
    z-index: 999;
}
.white-heading{
    color: #ffffff;
}
.heading:after {
    content: ' ';
    position: absolute;
    top: 100%;
    left: 50%;
    height: 40px;
    width: 180px;
    border-radius: 4px;
    transform: translateX(-50%);
    background: url(img/heading-line.png);
    background-repeat: no-repeat;
    background-position: center;
}
.white-heading:after {
    background: url(imgs/heading-line-white.png);
    background-repeat: no-repeat;
    background-position: center;
}

.heading span {
    font-size: 18px;
    display: block;
    font-weight: 500;
}
.white-heading span {
    color: #ffffff;
}
/*-----Testimonial-------*/
 .testimonial:after {
      position: absolute;
      top: 0 !important;
      left: 0;
      content: " ";
      background: url(img/testimonial.bg-top.png);
      background-size: 100% 100px;
      width: 100%;
      height: 100px;
      float: left;
      z-index: 99;
    }

    .testimonial {
      min-height: 375px;
      position: relative;
      background: linear-gradient(rgb(0 0 0 / 71%), rgb(0 0 0 / 73%)), url(./imgs/clients_bg.jpg);
      padding-top: 50px;
      padding-bottom: 50px;
      background-position: center;
      background-size: cover;
    }

    #testimonial4 .carousel-inner:hover {
      cursor: -moz-grab;
      cursor: -webkit-grab;
    }

    #testimonial4 .carousel-inner:active {
      cursor: -moz-grabbing;
      cursor: -webkit-grabbing;
    }

    .testimonial4_indicators .carousel-indicators {
      left: 0;
      margin: 0;
      width: 100%;
      font-size: 0;
      height: 20px;
      bottom: 15px;
      padding: 0 5px;
      cursor: e-resize;
      overflow-x: auto;
      overflow-y: hidden;
      position: absolute;
      text-align: center;
      white-space: nowrap;
    }

    .testimonial4_indicators .carousel-indicators li {
      padding: 0;
      width: 14px;
      height: 14px;
      border: none;
      text-indent: 0;
      margin: 2px 3px;
      cursor: pointer;
      display: inline-block;
      background: #ffffff;
      border-radius: 100%;
    }

    .testimonial4_indicators .carousel-indicators .active {
      background-color: #9dd3af;
    }

    .testimonial4_control_button .carousel-control {
      top: 50%;
      opacity: 1;
      width: 40px;
      height: 40px;
      font-size: 10px;
      cursor: pointer;
      font-weight: 700;
      overflow: hidden;
      line-height: 38px;
      text-align: center;
      position: absolute;
      background: transparent;
      border: 2px solid #ffffff;
      border-radius: 100%;
      transition: all 0.6s cubic-bezier(0.3,1,0,1);
    }

    .testimonial4_control_button .carousel-control-prev {
      left: -8%;
    }

    .testimonial4_control_button .carousel-control-next {
      right: -8%;
    }

    .testimonial4_control_button .carousel-control:hover {
      color: #000;
      background: #fff;
      border: 2px solid #fff;
    }

    .testimonial4_slide {
    width: 86%;
    margin: auto;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #d3d3d3;
    }

    .testimonial4_slide img {
      width: 136px;
      height: 136px;
      margin: auto;
      display: block;
      border-radius: 50%;
      box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    }

    .testimonial4_slide p {
      color: #ffffff;
      font-size: 18px;
      line-height: 1.4;
      margin: 20px 0 15px 0;
    }

    .testimonial4_slide h4 {
      color: #ffffff;
      font-size: 20px;
      font-weight: bold;
    }

    .testimonial .carousel {
      padding-bottom: 50px;
    }

    .testimonial .carousel-control-next-icon,
    .testimonial .carousel-control-prev-icon {
      width: 35px;
      height: 35px;
    }

    .heading.white-heading {
      color: #fff;
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 40px;
    }

    .float-btn {
  position: fixed;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  overflow: visible;
}

.float-btn img {
  width: 50px;
  height:50px;
  position: relative;
  z-index: 2;
}

/* Ripple Effect */
.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #4bae4f;
  animation: pulse 2s infinite;
  z-index: 1;
}
.pulse-ring-1{
  background: #0066ff !important;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;

  animation: pulse 2s infinite;
  z-index: 1;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.9;
  }
  60% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.2;
  }
}

/* Call button */
.call-btn {
  bottom: 100px;
  background: #0066ff;
}

/* WhatsApp button */
.whatsapp-btn {
  bottom: 30px;
  background: #25d366;
}

 .top-bar {
            background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
           
        }

        .top-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
        }

      

        .top-bar-heading h2 {
          font-style: italic;
            font-size: 25px;
            color: #1a1a1a;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin: 0;
            text-align: center;
            padding: 17px 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            position: relative;
            background: linear-gradient(45deg, #1a1a1a 0%, #333 50%, #1a1a1a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: glow 3s ease-in-out infinite alternate;
        }


        .top-bar-heading h2::after {
     content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 163px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #295092 50%, transparent 100%);
        }

     

.breadcrumb-section {
  background:linear-gradient(#000000aa,#00000085), url("imgs/brread.jpg") no-repeat center center/cover; /* background image */
  padding: 170px 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

    .breadcrumb-section h2 {
      font-size: 38px;
      font-weight: 700;
      margin-bottom: 10px;
    }

 

    .breadcrumb-section .breadcrumb {
      margin: 0;
      background: transparent;
      padding: 0;
    }

    .breadcrumb-section .breadcrumb-item a {
      color: #ffc107;
      text-decoration: none;
      font-weight: 500;
      text-transform: uppercase;
    }

    .breadcrumb-section .breadcrumb-item.active {
      color: #fff;
      font-weight: 600;
    }

    .breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
      content: "›";
      color: #fff;
    }

 


      .contact-info-section {
      background: #f3faf5;
      padding: 80px 0;
    }
    .contact-card {
      background: #fff;
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      transition: all 0.3s ease-in-out;
    }
    .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .contact-card i {
      font-size: 30px;
      color: var(--primary-color);
      margin-bottom: 15px;
    }
    .contact-card h5 {
      font-weight: 700;
      margin-bottom: 10px;
    }
    .contact-card p {
      margin: 0;
      color: #666;
    }
    .contact-card p a {
      color: #0b0606ff;
      text-decoration: none;
    }

    /* Map + Form Section */
    .map-form-section {
      padding: 60px 0;
    }
    .map-form-section h2 {
      font-weight: 700;
      margin-bottom: 10px;
    }
    .map-form-section small {
      color: #666;
    }
    .map-box {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .request-form {
      background: #f3faf5;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .request-form h5 {
      font-weight: 700;
      margin-bottom: 20px;
    }
    .request-form .form-control {
      border-radius: 8px;
      margin-bottom: 20px;
    }
    .request-form .btn-submit {
      background: var(--primary-color);
      color: #ffffffff;
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 30px;
      border: none;
      transition: all 0.3s;
    }
    .request-form .btn-submit:hover {
      background: #d1ac2d;
    }

    /* Button */
    .btn-custom {
      background: #0073e6;
      color: white;
      padding: 12px 20px;
      border-radius: 6px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background 0.3s;
    }
    .btn-custom:hover {
      background: #005bb5;
    }

    /* Popup Background */
    .popup-overlay {
      position: fixed;
      top: -20%; left: 50%;
      width: 100%; height: 100%;
      /* background: rgba(0,0,0,0.6); */
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    /* Popup Box */
    .popup {
      background: white;
      width: 550px;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      position: relative;
      animation: fadeIn 0.3s ease-in-out;
    }

    @keyframes fadeIn {
      from {opacity: 0; transform: scale(0.9);}
      to {opacity: 1; transform: scale(1);}
    }

    /* Close Button */
    .close-btn {
    position: absolute;
    top: -2px;
    right: 13px;
    font-size: 35px;
    cursor: pointer;
    color: #284f9b;
    }

    /* Form */
    .popup form {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .popup input, 
    .popup textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }

    .popup button {
      background: #0073e6;
      color: white;
      padding: 12px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 16px;
    }

    .popup button:hover {
      background: #005bb5;
    }

    /* Section Title */
.collection-heading {
  font-weight: 700;
  font-size: 28px;
  color: #222;
}

.collection-count {
  font-size: 14px;
  color: #666;
}

.collection-divider {
      border: 2px solid #245390;
  width: 100%;
  margin-bottom: 30px;
}

/* Cards */
.collection-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border: 1px solid #26519a4f;
}

.collection-card:hover {
  transform: translateY(-5px);
}

.collection-name {
  font-weight: 700;
  font-size: 16px;
  margin-top: 15px;
  text-transform: uppercase;
  color: #222;
}
.collection-wrapper{
  background-color: #f4f4f4;
}

hr {
    opacity: 0.7 !important;
}
/* Button */
.collection-btn {
  border: 1px solid #26519ad6 !important;
  color: #26519a !important;
  font-weight: 600 !important;
  margin-top: 15px;
  border-radius: 6px;
  padding: 8px 18px;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block; /* ✅ prevents full width */
}


.collection-btn:hover {
  background: #d4a94f;
  color: #fff;
}










.product-image-card {
  background: #fff;
  border-radius: 12px;
  text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 border: 1px solid #26519a4f;
}

.product-title {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 19px;
}

.product-divider {
  border: 1px solid #3b63a1; /* blue line matching theme */
  width: 60px;
  margin: 15px 0;
}

.product-desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.product-specs {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.product-specs li {
  font-size: 14px;
  color: #333;
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}

.product-specs li::before {
  content: "✔";
  color: #3b63a1;
  position: absolute;
  left: 0;
}

.product-btn {
  border: 1px solid #3b63a1;
  color: #3b63a1;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.product-btn:hover {
  background: #3b63a1;
  color: #fff;
}

.product-details .row{
  gap: 30px;
}
.product-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
  border: 1px solid #d0d8e4;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Header */
.product-table thead {
  background: linear-gradient(90deg, #3b63a1, #4a77c7);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

.product-table thead th {
  padding: 14px;
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.5px;
  border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
}



/* Table Body */
.product-table tbody td {
  padding: 12px;
  text-align: center;
  border-top: 1px solid #e5eaf2;
  border-right: 1px solid #e5eaf2;
}
.product-table i{
      color: var(--primary-color);
    font-size: 19px;
    padding-right: 3px;
    margin: 0%;
}

.product-table tbody td:last-child {
  border-right: none;
}

.product-table tbody tr:nth-child(even) {
  background: #f8faff;
}

.product-table tbody tr:hover {
  background: #eef3fb;
  transition: background 0.3s ease;
}

/* First column highlight */
.product-table td:first-child {
  font-weight: 600;
  color: #3b63a1;
}
.product-features li{
list-style: none;
    padding-left: 10px !important;
    display: flex;
    margin-bottom: 8px;
    align-items: baseline;
    font-weight: 500;
}

.product-features{

  padding-left: 0px !important;
}
.product-features li i{
      color: var(--primary-color);
    font-size: 10px;
    padding-right: 0px;
    margin: 0%;
 
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin: 0;  
  gap: 20px 40px;  
}

.feature-list li {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #333;
  margin-bottom: 8px;
}

.feature-list i {
  font-size: 18px;
    padding-right: 10px;
    color: var(--primary-color);
}


  .clients-section {
      background: #F0FBFF;
      padding: 50px 0;
      text-align: center;
    }

    .clients-slider {
      overflow: hidden;
      position: relative;
      width: 100%;
    }

    .clients-track {
      display: flex;
      width: calc(200%); /* duplicate logos for infinite effect */
      animation: scroll 20s linear infinite;
    }

    .clients-track img {
        height: 160px;
    margin: -9px 16px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    transition: filter 0.3s;
    padding: 10px;
    background: #fff;
    }

    .clients-track img:hover {
      filter: grayscale(0%);
    }

    @keyframes scroll {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-50%);
      }
    }

     .ourclients-wrapper {
      background: #f3faf6;
      padding: 60px 0;
      text-align: center;
    }
    .ourclients-title {
      font-weight: 700;
      margin-bottom: 40px;
      font-size: 2.2rem;
      color: #0b2c2d;
    }
    .ourclients-card {
   background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 0px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
    }
    .ourclients-card img {
      max-height: 80px;
      max-width: 100%;
      object-fit: contain;
    }
    .ourclients-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }


    .challie{
      font-size: 18px;
      font-weight: 600;
      color: #333;
      margin-top: 15px;
      text-transform: uppercase;
      
    }

     .officesection-wrapper {
      background: #f4f4f4;
      color: #fff;
      padding: 70px 0;
    }
    .office-box {
      background: #26519a;
      border-radius: 12px;
      padding: 30px 25px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.25);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
    }
    .office-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    }
    .office-title {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: #ffcc00;
    }
    .office-title img {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    }
    .office-details {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .office-details li {
      margin-bottom: 12px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.95rem;
      line-height: 1.5;
    }
    .office-details li i {
      color: #ffcc00;
      font-size: 1.1rem;
      margin-top: 4px;
    }
    .office-details a {
      color: #fff;
      text-decoration: none;
    }
    .office-details a:hover {
      color: #ffcc00;
    }

    .company-group{
      display: flex;
      align-items: center;
      gap: 10px;
      justify-content: space-around;
      font-size: 1.1rem;
      font-weight: 600;
    }

    .company-group p{
    padding: 10px 15px;
    background-color: #26519a;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;

    }



    @media screen and (max-width: 576px) {
    .new-why-sec {
    display:flex ;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}
.choose-us-section {
    background: #f0fbff;
    color: var(--text-dark);
    padding: 10px;
}
.title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-top: 30px;

}
.choose-card {
    margin-top: 20px;
}
   .navbar-brand img{
      width: 177px !important;
    }
    .about-section h2 {
    font-size: 24px;
}
.about-section p {

    font-size: 13px;
}
.about-text-wrapper{
  padding: 5px !important;
}
.company-group {
    gap: 4px;
}
.company-group p {
    padding: 10px 6px;
    background-color: #26519a;
    border-radius: 12px;
    color: #fff;
    font-size: 10px !important;
}
.industries-header .section-title {
    font-size: 25px;
}
.industries-header .sub-title {
    font-size: 11px;
}
.product-table i {
    font-size: 12px;
}
.top-bar-heading h2 {
    font-style: italic;
    font-size: 19px;
    padding: 17px 0px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.top-bar {
    background-color: #26519a;
    color: var(--white);
     padding: 0px 0;  font-size: 14px;
}
.hero-content.animate h1 {
    color: #ffffff;
    font-size: 25px;
}
.btn-custom {
    padding: 8px 9px !important;
    display: inline-flex !important;
    gap: 14px;
    align-items: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-right: 20px;
    margin-top: 19px;
}
.breadcrumb-section {
    background: linear-gradient(#000000aa, #00000085), url(imgs/brread.jpg) no-repeat center center / cover;
    padding: 68px 0;
}
.breadcrumb-section h2 {
    font-size: 28px;
}
.breadcrumb-section .breadcrumb {
    font-size: 13px;
}
.hero-content {
    transform: translateY(40%);

}
#hero .carousel-item {
    min-height: 400px !important;
    background-size: cover;
    background-position: center;
    position: relative;
}
#hero .carousel-item {
    height: 65vh;
    min-height: 600px;

}
.hero-content.animate a:nth-of-type(1) {
    animation: fadeUp 700ms 
cubic-bezier(.2, .9, .3, 1) forwards;
    animation-delay: 330ms;
    margin: 0;
    margin-right: 100px;
}
 .popup-overlay {
      position: fixed;
      top: -10%; left: 0%;
      width: 100%; height: 90%;
      /* background: rgba(0,0,0,0.6); */
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;

    }
        .popup button {
        padding: 7px;
        width: max-content;
        font-size: 12px;
    }
    .popup form {
    gap: 8px;
}
 .popup h2 {
  font-size: 18px;
}

    }

    .navbar-brand img{
      width: 250px;
    }

    
element.style {
}
.carousel-control.next {
    right: 10px;
}
.carousel-control:hover {
    background: var(--hover-light);
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}
[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}
[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary-color);
    border: none;
    width: 25px;
    height: 25px;
}