@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap");
:root {
  --color-white-100: hsl(206, 5%, 100%);
  --color-white-200: hsl(206, 5%, 90%);
  --color-white-300: hsl(206, 5%, 80%);
  --color-white-400: hsl(206, 5%, 65%);
  --color-white-500: hsl(206, 5%, 50%);
  --color-black-100: hsl(213, 20%, 10%);
  --color-black-200: hsl(213, 23%, 8%);
  --color-black-300: hsl(214, 21%, 6%);
  --color-black-400: hsl(210, 21%, 6%);
  --color-black-500: hsl(216, 22%, 4%);
  --color-black-600: hsl(220, 18%, 3%);
  --color-black-700: hsl(220, 27%, 2%);
  --color-black-800: hsl(180, 20%, 1%);
  --color-blue-100: hsl(214, 95%, 93%);
  --color-blue-200: hsl(213, 97%, 87%);
  --color-blue-300: hsl(212, 96%, 78%);
  --color-blue-400: hsl(213, 94%, 68%);
  --color-blue-500: hsl(217, 91%, 60%);
  --color-blue-600: hsl(221, 83%, 53%);
  --color-blue-700: hsl(224, 76%, 48%);
  --color-blue-800: hsl(226, 71%, 40%);
  --color-blue-900: hsl(224, 64%, 33%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
     0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
     0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
     0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Rubik", sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  height: -webkit-fill-available;
  color: var(--color-white-100);
  background-color: var(--color-white-100);
}

main {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
  background: none;
  box-shadow: none;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.section {
  margin: 0 auto;
  padding: 6rem 0 1rem;
}

.container {
  max-width: 75rem;
  height: auto;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}

.heading-xl {
  font-family: inherit;
  max-width: 600px;
  font-size:48px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color:  var(--color-black-800);
}
.heading-lg {
  font-family: inherit;
  font-size: clamp(2.179rem, 5vw, 3.176rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}
.heading-md {
  font-family: inherit;
  font-size: clamp(1.794rem, 4vw, 2.379rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
}
.heading-sm {
  font-family: inherit;
  font-size: clamp(1.476rem, 3vw, 1.782rem);
  font-weight: 600;
  line-height: 1.5;
}
.heading-xs {
  font-family: inherit;
  font-size: clamp(1.215rem, 2vw, 1.335rem);
  font-weight: 500;
  line-height: 1.5;
}

.paragraph {
  font-family: inherit;
  font-size: clamp(1rem, 2vw, 1.125rem);
  text-wrap: balance;
  color: var(--color-white-500);
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  user-select: none;
  outline: none;
  border: none;
  border-radius: 0.25rem;
  text-transform: unset;
  transition: all 0.3s ease-in-out;
}
.btn-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
}
.btn-darken {
  padding: 0.75rem 2rem;
  color: var(--color-white-100);
  background-color:#031C44;
  box-shadow: var(--shadow-medium);
}
.btn-darken:hover{
    color: white;
    background-color: #03be9c;
}
.btn-neutral {
  padding: 0.75rem 2rem;
  color: var(--color-black-500);
  background-color: var(--color-white-100);
  box-shadow: var(--shadow-medium);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: all 0.35s ease;
}
.header.on-scroll {
  background: white;
  box-shadow: var(--shadow-medium);
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1.25rem;
  width: 100%;
  height: 4.25rem;
  margin: 0 auto;
}

.brand {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -1px;
  color: var(--color-black-100);
  text-transform: uppercase;
}

.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  padding: 4rem 0 3rem;
  overflow: hidden;
  background-color: #f2f2f2;
  box-shadow: var(--shadow-medium);
  transition: all 0.4s ease-in-out;
}
.menu.is-active {
  top: 0;
  width: 100%;
  height: auto;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
}
.menu-link {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-black-100);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.menu-block {
  display: inline-block;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  user-select: none;
  white-space: nowrap;
  text-align: center;
  margin-left: auto;
  padding: 0.65rem 1.5rem;
  border-radius: 3rem;
  text-transform: capitalize;
  color: var(--color-white);
  background-color: #031c44;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 48rem) {
  .menu {
    position: relative;
    top: 0;
    width: auto;
    height: auto;
    padding: 0rem;
    margin-left: auto;
    background: none;
    box-shadow: none;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 2rem;
    margin: 0 auto;
  }
  .menu-link {
    text-transform: capitalize;
  }
  .menu-block {
    margin-left: 2rem;
  }
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  order: -1;
  z-index: 10;
  width: 1.6rem;
  height: 1.15rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
}
@media only screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 1rem;
  transform: rotate(0deg);
  background-color: black;
  transition: 0.25s ease-in-out;
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

.banner-column {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 3rem;
}

@media only screen and (min-width: 48rem) {
  .banner-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
  }
}
@media only screen and (min-width: 64rem) {
  .banner-column {
    grid-template-columns: 1fr max-content;
    column-gap: 4rem;
    margin-top: 3rem;
  }
}
.banner-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 2rem;
  object-fit: cover;
  justify-self: center;
}
@media only screen and (min-width: 48rem) {
  .banner-image {
    order: 1;
    /* max-width: 20rem; */
    height: auto;
  }
}
@media only screen and (min-width: 64rem) {
  .banner-image {
    max-width: 25rem;
    height: auto;
    margin-right: 5rem;
  }
}
.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.75rem;
}
.banner-links {
  position: absolute;
  top: 30%;
  right: 1.5rem;
  display: grid;
  justify-items: center;
  row-gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (min-width: 64rem) {
  .banner-links {
    opacity: 1;
    visibility: visible;
  }
}
.banner-links > * {
  font-size: 1.25rem;
  line-height: 1.25;
  color: #031c44;
}
.banner-links::before {
  position: absolute;
  content: "";
  top: -3rem;
  width: 4rem;
  height: 1.5px;
  transform: rotate(90deg);
  background: #031c44;
}
.banner-links::after {
  position: absolute;
  content: "";
  bottom: -3rem;
  width: 4rem;
  height: 2px;
  transform: rotate(90deg);
  background: #031c44;
}
.btn-darken a{
  color: white;
}


/* ===================================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
}
li.about-li {
  list-style: auto;
}
ul.about-ul {
  text-align: left;
  max-width: 850px;
  margin: 0 auto;
}

.about-data{
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
}
.about-section {
  margin-top: 60px;
    padding: 50px 0 !important;
    background-color: #031c44;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px 20px;
    margin-top: 20px;
}
.about-box {
    text-align: center;
}
.about-box p{
    margin-bottom: 0;
}
.about-box strong{
   color: #03be9c;
}

.circle img{
   text-align: center;
    margin: 0 auto 10px;
}
.products-section {
    text-align: center;
    margin: 80px 0;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px 30px;
    margin-top: 20px;
}
.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: inherit;
    max-width: 100%;
}
.product-info {
    background-color: black;
    color: white;
    padding: 10px;
    text-align: center;
}
.product-data{
    color: black;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 10px;
}
.product-data h2{
    margin-bottom: 10px;
}
/* ============================================================================== */

 .cta-container {
    width: 100%;
    /* max-width: 800px; */
    text-align: center;
} 

/* Heading */
.cta-container .heading {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
}

/* Table Styling */
.table-container {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    color: #000;
}

th {
    background-color: #00D084;
    color: white;
    padding: 15px;
    text-align: left;
    font-size: 16px;
}

td {
    padding: 30px 15px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    text-align: left;
}
.cta{
    background-color: #031C44;
    padding: 60px 0;
}

/* Responsive Design */
@media (max-width: 600px) {
    table, th, td {
        font-size: 13px;
    }

    th, td {
        padding: 10px;
    }
}
@media (max-width: 1024px) {
.about_us {
  margin-bottom: 20px !important; 
}
}

/* ==================================================================================== */
.ship-products{
    padding: 80px 0;
}
.ship-products .pr-data{
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 14px;
}
.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 10px;
    color: black;
    max-width: 600px;
}
.section-subtitle {
    text-align: center;
    color: gray;
    margin-bottom: 20px;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    padding: 14px 0 0 0;
}
.card img {
    width: 60%;
    text-align: center;
    max-width: 100%;
    border-radius: 10px;
    margin: 0 auto;
}
.card h3 {
    margin: 10px 0;
    color: white;
}
.card p {
    color: white;
}
.ship-btn {
    display: inline-block;
    background: #fff;
    color: black;
    padding: 10px 36px;
    margin-top: 10px;
    border-radius: 30px;
    text-decoration: none;
}
.ship-btn:hover{
  background-color: #00D084;
  color: #031C44;
}
.related-section {
    background: white;
    padding: 60px 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 50px 0px #00000040;
    margin-top: 40px;
}
.category {
    color: white;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
}
.data{
    background-color: #031C44;
    border-radius: 10px;
    padding: 30px 0;
}
.related-data{
  max-width: 600px;
  margin: 0 auto;
}

/* ===================================================================================== */
.contact-cta {
  font-family: Arial, sans-serif;
  background: url('Images/image\ \(1\).png') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 10px;
  box-sizing: border-box;
}
.contact-cta-container {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
  color: #000;
}
.contact-cta-container h2{
  margin: 10px 0 50px 0;
}
.input-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
}
.input-field {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 250px;
  box-sizing: border-box;
}
.input-field label {
  font-weight: bold;
  margin-bottom: 5px;
  text-align: left;
}
.input-field input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}
.contact-cta button {
  padding: 14px 80px;
  margin-top: 30px;
  border: none;
  border-radius: 5px;
  background: #031C44;
  color: white;
  cursor: pointer;
  font-size: 16px;
}
button:hover {
  background: #00D084;
}
/* ======================================================================================= */
.slider-container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px 40px;
  background: white;
  margin-bottom: 50px;
}
.swiper {
  width: 100%;
  padding: 20px 0;
}
.swiper-slide {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}
.swiper-slide img {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}
.product-title {
  font-weight: bold;
  margin-top: 10px;
  color: #000;
}
.slider-section .product-info {
  color: black;
  margin-top: 5px;
  background: white;
}
.product-price {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
  color: black;
}
.buy-btn {
  background: #031C44;
  color: white;
  padding: 10px 40px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
}
.swiper-pagination{
  margin-top: 30px !important;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom,8px);
  /* top: var(--swiper-pagination-top,auto); */
  left: 0;
  width: 100%;
  top: 90%;
}
.slider-data{
  max-width: 700px;
  margin: 0 auto;
  color: black;
  text-align: center;
} 
/* ============================================================================================= */
.contact-form {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
}

.contact-form .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center items horizontally */
  align-items: center; /* Center items vertically */
  width: 100%;
  max-width: 1200px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  gap: 50px;
  margin: 80px auto 100px auto; /* Centering the container */
}

.contact-form .form-container {
  flex: 1;
  min-width: 350px;
  background: white;
  color: #000;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 50px 0px #00000040;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Center text inside */
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-form .form-group {
  display: flex;
  gap: 25px;
  margin-bottom: 15px;
  width: 100%;
}

.contact-form .form-group div {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 20px;
  width: 100%;
}

.contact-form textarea {
  resize: none;
  height: 100px;
}

.contact-form .submit-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 20px;
  background: navy;
  color: white;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  margin-top: 10px;
}

.contact-form .submit-btn:hover {
  background: darkblue;
}

/* Right Side Contact Info */
.contact-form .info-container {
  flex: 1;
  min-width: 350px;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center text */
  /* text-align: center; */
}

.contact-form .info-box {
  display: flex;
  align-items: center;
  background: #f4f4f4;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 10px;
  width: 100%;
}

.contact-form .info-box img {
  width: 30px;
  margin-right: 10px;
}

.contact-form .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.contact-form .social-icons img {
  width: 30px;
  cursor: pointer;
}
.form{
  width: 100%;
}

/* ✅ Center Everything on Mobile */
@media (max-width: 768px) {
  .contact-form .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-form .form-group {
    flex-direction: column;
    gap: 10px;
  }

  .contact-form .info-box {
    flex-direction: column;
    align-items: start;
    /* text-align: center; */
  }

  .contact-form .info-box img {
    margin-bottom: 5px;
  }
  .form-group, .form {
    text-align: left !important;
  }
  .contact-form .form-container {
    min-width: 100% !important;
  }
}

/* ============================================================================================== */
 footer {
            background-color: #031C44;
            color: white;
            padding: 40px 5%;
        }
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            text-align: center;
        }
        
        .footer-logo img {
            width: 150px;
            margin: 0 auto 10px;
            text-align: center;
        }
        
        .footer-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin: 5px 0;
        }
        
        .footer-links ul li a {
            color: #cecece;
            text-decoration: none;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .social-links a {
            display: inline-block;
            color: white;
            font-size: 20px;
            margin-right: 10px;
            text-decoration: none;
            transition: 0.3s;
        }
        
        .social-links a:hover {
            color: red;
        }
        
        .address {
            font-size: 14px;
            color: #cecece;
        }
        
        #copyright {
            text-align: center;
            margin-top: 20px;
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                text-align: center;
            }
            .social-links {
                margin-top: 10px;
            }
        }
        ul{
          padding-left: 0;
        }

/* +++++++++++++++   font   +++++++++++++++++++++ */

.product-info h3{
  font-size: 20px;
}
.product-data h2{
  font-size: 36px;
}
.slider-data h2{
  font-size: 38px;
}
@media only screen and (max-width:1080px) {
  .heading-xl{
    font-size: 34px;
  }
  .banner-inner{
    row-gap: 0.5rem;
  }
  .paragraph{
    font-size: 14px;
  }
}
@media only screen and (max-width:767px) {
  .banner-inner{
    align-items: center;
  }
  .product-dis h1{
    text-align: left;
  }
  .banner-inner h1{
    text-align: center;
  }
  .contact-form .container {
    margin: 40px 0 100px 0;
  }
  .info-box p{
    text-align: left;
  }
  .info-container h2{
    text-align: center;
  }
  .contact-form .social-icons{
    justify-content: center;
  }
    .contact-form .submit-btn{
    width: 80%;
  }
}
.footer-bottom a{
  color: white;
  border-left: 1px solid white;
  padding-left: 5px;
  padding-right: 5px;
}

.info-box a{
  color: black;
  margin-right: 8px;
}