﻿body {
    font-family: "Poppins", sans-serif!important;
}
/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a{
    text-decoration:none!important
}
h1{
    font-size:3rem;
    color:#004aad;
    font-weight:600!important;
}
h2{
    font-size:2.5rem!important;
    color:#004aad;
    font-weight:500!important;
}

/* Navbar Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;

}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

/* Navbar Container */
.navbar {
    position: fixed!important;
    top:0;
    width: 100%;
    color: white;
    z-index: 999;
    transition: top 0.4s ease;
    background: transparent;
    padding:15px 0!important;
}

.navbar.scrolled {
    background: rgba(0,0,0,0.85); 
    backdrop-filter: blur(5px);  
}
header {
   transition: all 0.3s ease!important;
}

header.hide {
   transform: translateY(-100%);
}

header.bg-active {
   background: rgba(0,0,0,0.7);  
   backdrop-filter: blur(5px);
}

/* Logo */
.logo img{
    max-width:68px;
    border-radius:50%;
}
.logo a {
  color: black;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1px;
}
.logo h3{
margin-bottom:0;
}

/* Menu Links */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-bottom:0;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  background-color:transparent;
  border: 1px solid transparent;
  border-radius:5px;
  padding:8px;
  transition: color 0.3s ease;
  font-weight:500;
}

.nav-menu a:hover{
  border: 1px solid #277e5efc;
  box-shadow: 0 0 3px #277e5efc, 0 0 3px #277e5efc; 
 
}
.nav-menu a.active{

}

/* Button */


/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}
.rightside{
    display:flex;
    column-gap:30px;
    align-items:center;
}
.rightside a{
   font-weight: 400;
  letter-spacing: 0.5px;
}
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none!important;
  position: absolute;
  top: 130%;
  left: 0;
  background: black;
  min-width: 250px!important;
  border-radius: 6px;
  overflow: hidden;
  z-index: 10;
  padding:0 0!important;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: block;
  padding: 5px 14px;
  color: #fff;
}

.dropdown-menu a:hover {

}

/* Hover dropdown on desktop */
.dropdown:hover .dropdown-menu {
  display: block!important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    
    .navbar{
       
    }
  .nav-menu {
    position: fixed;
    top: 70px;
    right: 0;
    flex-direction: column;
    width: 50%;
    height:100vh;
    padding: 20px;
    background-color:black;
    border-radius:15px;
    transform: translateX(100%); 
    transition: transform 350ms cubic-bezier(.2,.8,.2,1);
    will-change: transform;
    z-index: 999; 
  }
  .nav-menu .active{
      color:#ffd633!important;
  }
  .nav-menu a{
      color:white;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
  }

  .nav-menu.show {
    transform: translateX(0); 
  }

  .hero-text {
  text-align:center;
  position: relative;
  top: 13%;

}
  .hero-text p {
  font-size: 1rem;
  margin-: 20px 0;
}

  .hero-logo {
  position: relative;
  top: 5%;

  }
  .hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
  .butn{
      display:none;
  }
  .menu-toggle {
    display: flex;
  
  }
  .rightside ul{
      padding-left:0!important;
  }

   .rightside{
    flex-direction: column;
    justify-content:center;
    align-items:center;
    gap: 15px; 
}
   .btn-primary {
  background: #fff;
  color:black!important;
}
  .rightside ul{
     display:flex;
     flex-direction:column;
     justify-content:center;
     align-items:flex-start;
   }
 }  
.footer-section a:hover {
  color: #ffd633;
  text-decoration: underline;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section hr {
  opacity: 0.2;
}
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #2d9ee8;
}

.but{
  background-color: white; 
  padding: 7px;
  border-radius: 5px;  
  border:1px solid transparent;
}
.but:hover{
 background-color: transparent;
 border: 1px solid #fa9ffa;
 box-shadow: 0 0 3px #fa9ffa, 0 0 3px #fa9ffa; 
 color:#fff;        
}
.but:hover a{
 color:#fff;        
}
.but a{
     text-decoration:none;
     color: black;
}
@media(max-width:768px){
    .foot-content{
        text-align:center;
    }
}

/*Hero section*/
.hero {
    background: #111;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    position:relative;
    z-index:9!important;
}

.containerr {
    max-width: 1140px;
    width: 100%;
    margin: auto;
    position: relative; 
}

.head-content {
    position: relative;
    width: 100%;
}

.circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    background: linear-gradient(
        160deg,
        #3887b7 0%,
        #176393 15%,
        #083a5b 35%,
        #09314c 50%,
        #083a5b 65%,
        #176393 85%,
        #3887b7 100%
    );
    filter: drop-shadow(0 0 30px rgba(43, 145, 207, 0.7));
    border-radius: 50%;
    width: 50%;
    aspect-ratio: 1/1;
    z-index: 1;
    animation: rotateCircle 18s linear infinite;
}

@keyframes rotateCircle {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero .hero-text {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color:white;
    margin-bottom:1rem;
}

.hero-text h2 {
    font-size: 4.9rem!important;
    line-height: 1.2;
    box-sizing:border-box;
}

.hero-text h3 {
    font-size: 2.5rem;
    margin: 0;
    font-weight:200!important;
}

.lefttext{
   width:80%;
    padding:5px;
}
.righttext h3{


}
.lefttext p{
    font-size:20px;

}

.hero:hover .lefttext h2{

}
.hero:hover .righttext h3{

}
.line{
    background-color:white;
    width:2px;
    height:20vw;
}
@media(max-width:768px){
   .hero .hero-text {
    display: flex;
    flex-direction:column;
    justify-content: space-between;
    align-items: center;
    width: 100%; 
    padding:10px;
}
   .hero-text h2 {
    font-size: 3.6rem!important;
    line-height: 1.1;
}

.hero-text h3 {
    font-size: 2.5rem;
    margin: 0;
    font-weight:200!important;
}
  .righttext{
   overflow:unset!important;
   width:100%;
   padding:12px;
}
  .hero {
  width: 100%;
  height: 85vh;
}
.lefttext{
   overflow:unset!important;
   width:100%;
    padding:5px;
}
.righttext h3{
    transform:none!important;
}
.lefttext h2{
    transform:none!important; 
}
.center-btn{
    background-color:transparent!important;
    display:block!important;
    text-align:center;
    
}
.center-btn a{
    background-color:white;
    padding:5px 12px;
    border-radius:5px;
}
}


/*About-section*/
 .welcome h2{
    font-size:3.5rem!important;
    line-height:1;  
    font-family:Open Sans;
    font-weight:600!important;
   
 }
  .welcome p{
    font-size:1.3rem!important;
    line-height:1;  
    color:#666;
 }
  @media(max-width:768px){
       .welcome h2{
    font-size:3.4rem!important;
 }
  .welcome p{
    font-size:1.2rem!important;
 }
  }

  .abt-section {
 /*  background:linear-gradient(
         45deg,
        #3887b7 0%,
        #176393 15%,
        #083a5b 35%,
        #09314c 50%,
        #083a5b 65%,
        #176393 85%,
        #3887b7 100%

      );*/
  background:#277e5efc;
  width: 100%;
  margin: 70px 0;

  }
   .abt-section h3{
       text-align:center;
       color:white;
       padding:20px 0;
       font-family:Montserrat
   }

  .about-content{
      display:flex;
      justify-content:space-between;
      width:100%;
      padding-bottom:20px;
  }
  .about-left{
      width:50%;
      position:relative;
      top:0;
      left:0;
      padding:30px;
      border-right:1px solid white;
  }
   .about-left .imgmain{
     position:absolute;
     top:15%;
     right:16%;
     aspect-ratio:3/2;
     width: 70%;
     
  }
     .about-left .imgmain img{
       width:100%;
       height:100%;
       border-radius:10px;
  }
    .about-left .bag1{
     position:absolute;
     background:url('/Html/img/bag8.jpg') no-repeat center/cover;
     aspect-ratio:3/2;
     border-radius:10px;
     top:0%;
     left:0;
     width: 70%;
  }

  .about-right{
      padding:20px;
      width:50%;    
      font-weight:400!important;
  }
   .about-right p{
      font-weight:300!important;
      color:#f1f1f1;
  }

   @media(max-width:768px){
 .about-content {
  display: flex;
  flex-direction: column;
  gap:30px;
}
   .about-left{
      width:100%;
      height:60vw;
      border-right:none;
  }
   .about-right{
      padding:5px;
      width:100%;    
      font-weight:400!important;
  }
   .about-left .imgmain {
    position: absolute;
    top: 30%;
    right: 6%;
    aspect-ratio: 3/2;
    width: 70%;
}
     .about-left .bag1{
     position:absolute;
     background:url('/Html/img/bag8.jpg') no-repeat center/cover;
     aspect-ratio:3/2;
     border-radius:10px;
     top:0%;
     left:5%;
     width: 70%;
  }
   }


   /*Cards-section*/
   .card-content{
     display:flex;
     justify-content:space-between;
 }
 .card-left{
     width:49%;
     overflow:hidden;
     border-radius:15px;
 }
 .card-right{
     width:49%;
     overflow:hidden;
     border-radius:15px;
 }
 .card1{
     position:relative;
     color:white;
     
 }
  .card2{
     position:relative;
     color:white;
 }
 .card1::before, .card2::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    z-index: 1;
}
 .card1::before{
    background-image:linear-gradient(to top, rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url('/Html/img/bag6.jpg');
}
 .card2::before{
     background-image:linear-gradient(to top, rgba(0,0,0,0.3),rgba(0,0,0,0.3)), url('/Html/img/bag10.jpg');
 }
 .card1:hover::before, .card2:hover::before{
   transform: scale(1.1);
}   

 .cards-section .cards{
     aspect-ratio:4/2;
     border-radius:10px;
 }

 .card-text{
     position:absolute;
     bottom:5%;
     left:5%; 
     transition:none;
     z-index:5;
 }
 .card-text h1{ 
     font-weight:500!important;
 }
.right-arrow {
  display: inline-block;
  width: 8px;             
  height: 8px;           
  border-right: 1.2px solid currentColor;
  border-bottom: 1.2px solid currentColor;
  transform: rotate(-45deg);
  margin-left: 8px;
  vertical-align: middle;
  box-sizing: border-box;
}

 @media(max-width:768px){
   .card-content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap:30px;
}
 .card-left, .card-right{
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
}
 .butt a {
  color: #111;
  font-weight: 400 !important;
  font-size: 13px!important;
}
 }

 /*service-section*/
  .services {
  padding: 70px 10%;
  background: #2a80601a;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header h2 {
  font-size: 36px;
  color: #22996d;
  margin-bottom: 10px;
}

.services-header p {
  font-size: 16px;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #ffffff;
  padding: 15px 10px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(34, 153, 109, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 30px;
  color: #22996d;
}

.service-card h3 {
  font-size: 20px;
  color: #083a5b;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-icon {
  background: #22996d;
}

.service-card:hover .service-icon i {
  color: #ffffff;
}



  /*Brand Section*/
  .brand-scroll {
  overflow: hidden;
  width: 100%;
  background: #f9f9f9;
  margin:15px 0;
}

.brand-track {
  display: flex;
  width: max-content; 
  gap: 45px;
  animation: scroll 20s linear infinite;

}
.brand-right{
  animation: scroll-reverse 20s linear infinite;
}
.brand-sec h3{
    font-weight:400!important;
    padding:15px;
}

.brand-track img {
  height: 80px; /* Adjust logo size */
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

   /*Sales-section*/
     .Sales-section{
background:#111;
 background-position-y:20%;
      width:100%;
      height:20vw;
      color:white;
  }
  .sales{
      display:flex;
  }
  .mid-line{
      width:3px;
      background-color:white;
  }
  .right-sale{
      padding:20px;
      font-size:16px;
  }
   .right-sale p{
      font-size:17px;
  }
.footer-section {
    background: #1a4d3a;
}

   @media(max-width:990px){
       .Sales-section {
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/Html/img/bag12.jpg') no-repeat center/cover;
    background-position-y: 0%, center;
  background-position-y: 20%;
  background-position-x: 10%;
  width: 100%;
  height: auto;
  color: white;
}
   .sales {
  display: flex;
  flex-direction: column;
}
   .left-sale{
       text-align:start;
       padding:20px;
   }
 }
  @media(min-width:990px)and (max-width:1200px){
             .Sales-section {
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/Html/img/bag12.jpg') no-repeat center/cover;

  width: 100%;
  height:25vw ;

}
  }
   /*Contact-section*/
     .contact-section {
  padding: 80px 10%;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-info p {
  color: #444;
  line-height: 1.6;
}

.contact-details p {
  margin: 8px 0;
}

.contact-details a {
  color: #2d9ee8;
  text-decoration: none;
}

.social-links a {
  display: inline-block;
  margin-right: 10px;
  color: #2d9ee8;
  font-size: 1.3rem;
  transition: 0.3s;
}

.social-links a:hover {
  color: #111;
}

.contact-form {
  flex: 1;
  min-width: 320px;
  background: #083858;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-form h3 {
  color: #fff;
  margin-bottom: 15px;
}

.form-group {
  display: flex;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  margin-bottom: 15px;
  font-size: 1rem;
}

.contact-form button {
  background: #111;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #222;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 10px;
  margin-top: 50px;
}
 .map iframe{
      width:100%!important;
      height:35vw!important;
  }
 
@media(max-width:768px){
  .contact-form {
  padding: 20px;
}
  .contact-section {
  padding: 30px 5%;
}
  .map iframe{
      width:100%!important;
      height:45vw!important;
  }
}
.foot{
    text-decoration:underline!important;
    color:white!important;
}