/* @import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap'); */
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&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&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

:root {
  --heading-font: "Poppins", sans-serif;
  --body-font: "Poppins", sans-serif;
  --theme-color: #0a4b9b;
  /* --theme-color: #013376; */
  --theme-bg-light: #f9f9f9;
  --body-text-color: #333435;
  --color-white: #ffffff;
  --color-dark: #111111;
  --color-green: #0b5e56;
  --color-blue: #0049d0;
  --color-yellow: #f9cc47;
  --hero-overlay-color: #01060f;
  --slider-arrow-bg: rgba(255, 255, 255, 0.2);
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all 0.5s ease-in-out;
  --transition2: all 0.3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-white-color: rgba(255, 255, 255, 0.08);
  --border-white-color2: rgba(255, 255, 255, 0.05);
  --footer-bg: #111111;
  --footer-bg2: #181818;
  --footer-text-color: #f5faff;
}

body {
  padding-top: 142px;
  color: var(--body-text-color);
  overflow-x: hidden !important;
  font-family: var(--body-font);
}

@media (max-width:510px) {
  body{
    padding-top: 90px;
  }
}

/* scrollTop */

#scrollTopBtn {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 1;
  display: none;
  background-color: var(--theme-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease-in-out;
}

#scrollTopBtn:hover {
  background-color: var(--theme-color);
}

.color-green {
  color: var(--color-green);
}

p {
  text-align: justify;
  /* margin-bottom: 5px; */
}

.py-50 {
  padding: 50px 0px;
}

a {
  color: var(--body-text-color);
}

a:hover {
  color: var(--theme-color) !important;
}
img {
  max-width: 100%;
  height: auto;
}
.fas-icon {
  color: var(--theme-color);
}
ul {
  list-style-type: none;
  padding-left: 0px;
}
.card {
  background-color: var(--color-white);
  border: none;
  border-radius: 15px;
}

/* Header Section */
.navbar-wrapper {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  background: transparent;
}

.top-header {
    background-color: var(--theme-color); 
    font-size: 0.875rem;
    color: #fff;
}

.navbar {
  width: 100%;
  margin: 0 auto;
  background-color: white !important;
  font-family: var(--heading-font);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  /* border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px; */
}

.navbar-toggler:focus {
  border: none;
  box-shadow: none;
}

/* @media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1rem;
    }
  } */

@media (max-width: 510px) {
  .navbar {
    width: 100%;
    border-radius: 0px;
  }
}
/* .navbar-brand img{
    width: 150px;
  } */

@media (min-width: 320px) and (max-width: 510px) {
  .navbar-brand img {
    width: 60px !important;
  }
  .navbar-links .nav-link {
    padding: 7px 0.5rem !important;
  }
}
@media (min-width: 520px) and (max-width: 768px) {
  .navbar-brand img {
    width: 60px !important;
  }
  .navbar-links .nav-link {
    padding: 7px 0.5rem !important;
  }
}
@media (max-width: 1024px) {
  .navbar-brand img {
    width: 75px;
  }
}
@media (min-width: 1025px) {
  .navbar-brand img {
    width: 80px;
  }
}

/* .navbar-links .nav-link {
    position: relative;
    padding-bottom: 5px; 
    text-decoration: none;
    transition: all 0.3s ease;
} */

.navbar-links .nav-link:hover {
  border-bottom: 3px solid var(--theme-color); /* or your preferred border color */
}

.navbar-links .nav-link {
  padding: 0 0.5rem;
}
.navbar-links {
  white-space: nowrap;
}
@media (min-width: 992px) {
  .navbar-nav .d-flex {
    gap: 20px;
  }
}

.toggler-iocn {
  color: var(--theme-color);
}

.nav-link {
  color: var(--body-text-color);
  font-size: 16px;
  font-weight: 600;
}

.btn-theme {
  background-color: var(--theme-color);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  border-radius: 0.3rem;
}
.btn-theme:hover {
  color: var(--color-white) !important;
}

/* Banner */
 /* Carousel */
  .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  @media (min-width: 576px) {
    .carousel-item img {
      height: 300px;
    }
  }

  @media (min-width: 768px) {
    .carousel-item img {
      height: 300px;
    }
  }

  @media (min-width: 992px) {
    .carousel-item img {
      height: 400px;
    }
  }

  @media (min-width: 1200px) {
    .carousel-item img {
      height: 475px;
    }
  }

.site-heading span {
  color: var(--color-dark);
  font-weight: 500;
}

.site-title {
  color: var(--theme-color);
}

/* About Section */

.image-border {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 90%;
  height: 90%;
  border: 4px solid var(--theme-color);
  border-radius: 12px;
  z-index: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.feature-item {
  position: relative;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.feature-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.feature-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  background-color: #00000047;
  /* background-color: rgba(0, 0, 0, 0.5); */
  width: 100%;
  height: 100%;
  display: flex;
  color: #fff;
  flex-direction: column;
  justify-content: end;
  align-items: baseline;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-content {
  background-color: rgba(0, 0, 0, 0.7);
}

.feature-item .title {
  font-size: 24px;
  font-weight: bold;
}

@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}


/* Product */

.product-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    width: 100%;
    max-width: 1200px;
  }

  .product-card {
    border-radius: 20px;
    overflow: hidden;
    background:#f5f7fb;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    color: var(--body-text-color);
    text-align: center;
  }

  .product-card:hover {
    transform: translateY(-15px) rotateX(6deg) rotateY(-6deg);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
  }

  .product-image {
    overflow: hidden;
    border-radius: 20px 20px 0 0;
  }

  .product-image img {
    width: 100%;
    transition: transform 0.4s ease;
  }

  .product-card:hover .product-image img {
    transform: scale(1.15);
  }

  .product-info {
    padding: 20px;
  }

  .product-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  }

  .product-description {
    font-size: 14px;
    color: var(--body-text-color);
    margin-bottom: 10px;
  }

/* why-choose */


   .why-choose i{
    color: var(--theme-color);
    cursor: pointer;
  }
  .why-choose i:hover{
    background-color: var(--theme-color) !important;
    color: #fff !important;
  }

  /* Faq */

  .faq-area .accordion-item {
	border: none;
	background: var(--color-white);
	box-shadow: var(--box-shadow)
}

.faq-img img {
	border-radius: 15px
}

.faq-area .accordion-item span {
	width: 45px;
	height: 45px;
	margin-right: 15px
}

.faq-area .accordion-item i {
	width: 45px;
	height: 45px;
	line-height: 45px;
	border-radius: 50px;
	background: var(--theme-color);
	text-align: center;
	color: var(--color-white)
}

.faq-area .accordion-button:not(.collapsed) {
	color: var(--theme-color);
	background: 0 0;
	box-shadow: inset 0 -1px 0 rgb(0 0 0/13%)
}

.accordion-button {
	border-radius: 0 !important;
	background: 0 0;
	font-weight: 700;
	font-size: 20px;
	color: var(--color-dark);
	box-shadow: none !important
}

.accordion-button:not(.collapsed) {
	border-bottom: 1px solid var(--theme-color);
}

.accordion-button:not(.collapsed)::after {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxNiAxNicgZmlsbD0nIzIxMjUyOSc+PHBhdGggZmlsbC1ydWxlPSdldmVub2RkJyBkPSdNMS42NDYgNC42NDZhLjUuNSAwIDAgMSAuNzA4IDBMOCAxMC4yOTNsNS42NDYtNS42NDdhLjUuNSAwIDAgMSAuNzA4LjcwOGwtNiA2YS41LjUgMCAwIDEtLjcwOCAwbC02LTZhLjUuNSAwIDAgMSAwLS43MDh6Jy8+PC9zdmc+)
}

@media all and (max-width:991px) {
	.accordion-button {
		font-size: 16px
	}
}


/* How We Work */

 .how-we-work-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .work-box {
    background: #fff;
    color: #000;
    padding: 25px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: background 0.4s, color 0.4s;
    text-align: center;
    width: 100%; /* Default: 1 per row */
  }

  .work-box i {
    font-size: 60px;
    margin-bottom: 15px;
    color: #002B5B;
    transition: color 0.4s;
  }

  .work-box:hover {
    background: linear-gradient(180deg, #2D6CDF 0%, #002b5b 100%);
    color: #fff;
    border: none;
  }

  .work-box:hover i {
    color: #fff;
  }

  .work-box h5 {
    font-weight: bold;
    margin-top: 15px;
    font-size: 18px;
  }

  .work-box p {
    font-size: 14px;
  }

  /* Tablet: 3 per row */
  @media (min-width: 768px) {
    .work-box {
      width: calc(33.333% - 20px); /* 3 in a row with 20px gap */
    }
  }

  /* Laptop/Desktop: 5 per row */
  @media (min-width: 1200px) {
    .work-box {
      width: calc(20% - 20px); /* 5 in a row */
    }
  }

/* Services */

.service-card {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
            background: white;
            transition: all 0.3s ease;
            z-index: 1;
        }
        
        /* Animated border element */
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--theme-color), transparent);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.5s ease;
            z-index: 2;
        }
        
        .service-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--theme-color), transparent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
            z-index: 2;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        .service-card:hover::after {
            transform: scaleX(1);
            transform-origin: right;
        }
        
        /* Left and right borders */
        .service-card .left-border {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(transparent, var(--theme-color), transparent);
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform 0.5s ease;
        }
        
        .service-card .right-border {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(transparent, var(--theme-color), transparent);
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .left-border {
            transform: scaleY(1);
            transform-origin: top;
        }
        
        .service-card:hover .right-border {
            transform: scaleY(1);
            transform-origin: bottom;
        }
        
        .service-img {
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .service-card:hover .service-img {
            transform: scale(1.03);
        }
        
        .service-content {
            padding: 2rem;
            position: relative;
        }
        
         .service-content h3 {
            margin-bottom: 1rem;
            color: #212529;
            font-weight: 600;
            font-size: 30px;
        }
        
        .service-content p {
            color: #6c757d;
            margin-bottom: 0;
        }

/*-----Testimonial-------*/

.swiper {
      padding: 40px 0;
    }
  .swiper-button-next:after, .swiper-button-prev:after{
    display: none !important;
  }

    .swiper-slide {
      height: 100%;
    }

    .testimonial-card {
      border: 1px solid #ddd;
      padding: 20px;
      border-radius: 10px;
      background-color: #fff;
      height: 100%;
    }

    .testimonial-card.active {
      border-color: var(--theme-color) !important;
      box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
    }

    .testimonial-img {
      width: 50px;
      height: 50px;
      object-fit: inherit;
    }

    .swiper-button-next,
    .swiper-button-prev {
      color: var(--theme-color) !important;
    }

    .swiper-pagination-bullet-active {
      background: var(--theme-color) !important;
    }
    .swiper-pagination{
      display: none;
    }

/* Stats Content */

.stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding-top: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .stat-box {
            border: 2px solid var(--theme-color);
            padding: 30px;
            min-width: 200px;
            text-align: center;
            flex: 1;
            transition: all 0.3s ease;
        }
        .no-border{
          border-right: none !important;
        }

        @media (max-width:323px) {
          .no-border{
            border-bottom: none;
            border-right: 2px solid var(--theme-color) !important;
          }
        }
        @media (min-width:324px) and (max-width:510px) {
          .no-border{
            border-right: 2px solid var(--theme-color) !important;
          }
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--theme-color);
            margin-bottom: 10px;
        }
        .stat-number::after {
            content: "+";
            color: inherit;
        }
        .stat-label {
            font-size: 16px;
            text-align: center;
            color:rgb(0, 0, 0);
            margin: 0;
        }

        @media (max-width: 768px) {
            .stat-box {
                min-width: 150px;
                padding: 20px;
            }
        }

/*---------footer---------*/

        
        /* .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #0d65db54;
            z-index: 0;
        } */
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            padding: 0 20px;
        }
        
        /* Company Info Section */
        .company-info img {
            max-width: 180px;
            margin-bottom: 20px;
        }
        
        .company-info p {
            font-size: 16px;
            width: 80%;
            line-height: 1.6;
            margin-bottom: 20px;
            color:#fff;
        }

        @media (max-width:510px) {
          .company-info p{
            width:100%
          }
        }
        
        /* Quick Links Section */
        .quick-links h3, 
        .contact-info h3, 
        .latest-blogs h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #000;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }
        
        /* .quick-links h3::after,
        .contact-info h3::after,
        .latest-blogs h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: #3498db;
        } */
        
        .quick-links ul {
            list-style: none;
            padding: 0;
        }
        
        .quick-links li {
            margin-bottom: 10px;
        }
        
        .quick-links a {
            color: #000;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 15px;
        }
        
        .quick-links a:hover {
            color:rgb(210, 210, 210);
        }
        
        /* Contact Info Section */
        .contact-info p {
            margin-bottom: 15px;
            font-size: 15px;
            line-height: 1.6;
            color:#000;
        }
        
        /* Latest Blogs Section */
        .latest-blogs .blog-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 15px;
        }
        
        .latest-blogs .blog-item img {
            width: 100%;
            height: 140px;
            display: block;
            transition: transform 0.3s;
        }
        
        .latest-blogs .blog-item:hover img {
            transform: scale(1.05);
        }
        
        .latest-blogs .blog-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            padding: 15px;
            color: white;
        }
        
        .latest-blogs .blog-content small {
            display: block;
            font-size: 14px;
            margin-bottom: 5px;
        }
        
        .latest-blogs .blog-content a {
            color: #fff;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
        }
        
        /* Copyright Section */
        .copyright {
            text-align: center;
            padding-top: 15px;
            margin-top: 40px;
            border-top: 2px solid #ffffff;
            font-size: 14px;
            color: #fff;
            padding-bottom: 15px;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .quick-links h3, 
            .contact-info h3, 
            .latest-blogs h3 {
                margin-bottom: 15px;
            }
            
            .latest-blogs .blog-item {
                max-width: 300px;
            }
        }

         .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icons a {
            color: #000;
            font-size: 18px;
            transition: all 0.3s ease;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            text-decoration: none;
            align-items: center;
            justify-content: center;
        }
        
        .social-icons a:hover {
            color: #fff;
            background: #3498db;
            transform: translateY(-3px);
        }