:root {
  --primary-color: #0057b8;
  --accent-color: #3e8de3;
  --text-dark: #222;
  --bg-light: #f9fbff;
}

/* Base Reset & Font */

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: #f9f9f9;
}

span {
  font-weight: 600;
}

/* ======= HEADER ======= */

:root {
  --primary-color: #0055cc;
  --accent-color: #0088ff;
}

/* header {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/flower.jpg') no-repeat center center / cover;
  color: white;
  padding: 10rem 1rem 5rem;
  clip-path: ellipse(120% 100% at 50% 0%);
  overflow: hidden;
} */


header {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgb(12 0 0 / 80%)), url('../img/flower.jpg') no-repeat center center / cover;
  color: white;
  /* padding: 20rem 1rem 10rem; */
  clip-path: ellipse(120% 100% at 50% 0%);
  overflow: hidden;
}


.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  animation: fadeInUp 1.5s ease-out both;
}

.header-left .logo {
  width: 100px;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;

  /* ============ */
  position: fixed;
  /* top: 5px;
  left: 50px; */

}

.header-left {
  /* display: flex; */
  z-index: 999;
  position: absolute !important;
  top: 20px;
  left: 20px;
}

.header-left .logo:hover {
  transform: scale(1.1);
}

.header-center {
  text-align: center;
  flex: 1;
  animation: fadeInUp 1.2s ease-out both;
}

.header-center h1 {
  font-size: 3.6rem;
  margin: 0.2rem 0;
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.header-center p {
  margin: 0.3rem 0;
  color: #f0f8ff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.tagline {
  font-style: italic;
  font-size: 1.5rem;
}

.header-right {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 1.5s ease-out both;
}

.extra-img {
  width: 100px;
  background: white;
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.extra-img:hover {
  transform: scale(1.05);
}

/* Responsive Design */

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }

  .header-left,
  .header-right {
    justify-content: center;
  }

  .extra-img {
    width: 70px;
  }

  .header-center h1 {
    font-size: 2.4rem;
  }

  header {
    padding: 12rem 1rem 5rem;
  }
  
/* =====================whatsapp icon======================== */

.whatsapp-icon {
  z-index: 100;
  position: fixed;
  top: 60%;
  left: 0%;
  width: 60px;
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

.whatsapp-icon a {
  transform: translate(0px, 0px);
  border-radius: 0px 50px 50px 0px;
  text-align: left;
  margin: 2px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px;
  font-size: 22px;
  transition: all 0.8s;
}

.whatsapp {
  background-color: #25d366;
  color: #FFF;
}

.whatsapp-icon a:hover i {
  transform: rotate(360deg);
}

.whatsapp-icon a i.fa-whatsapp {
  background-color: #FFF;
  color: #25d366;
}

.whatsapp-icon a i {
  background-color: #FFF;
  height: 40px;
  width: 40px;
  color: #000;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  transition: all 0.5s;
}
}

@media (min-width:768px) {
  header {
    padding: 20rem 1rem 10rem;
  }
  .whatsapp-icon{
    display: none;
  }

}

@media (max-width: 480px) {
  .header-center h1 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .extra-img,
  .header-left .logo {
    width: 65px;
  }

  .header-left .logo {
    top: 18px !important;
    border-radius: 8px;
    padding: 5px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======= NAVIGATION ======= */
/* === NAVBAR STYLING === */

/* .navbar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  background-color: #ffffff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  animation: slideInDown 1s ease-out both;
  position: sticky;
  top: 0;
  z-index: 998;
}

.navbar a {
  text-decoration: none;
  color: #0072ce;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.3s ease;
}


.navbar .active {
  border-bottom: 2px solid #0072ce;
}


.navbar a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #0072ce;
  transition: 0.3s ease;
}

.navbar a:hover {
  color: #005bb5;
}

.navbar a:hover::after {
  width: 100%;
} */

/* Animation Keyframe */

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Responsive Navbar === */

/* @media (max-width: 768px) {
  .navbar {
      flex-wrap: wrap;
      gap: 1rem;
      padding: 1rem;
  }

  .navbar a {
      font-size: 1rem;
  }
} */

/* ======= SECTIONS GENERAL ======= */

section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

/* ======= WELCOME SECTION ======= */

.welcome p {
  text-align: center;
  max-width: 900px;
  margin: auto;
  font-size: 1.1rem;
}

/* ======= PRODUCTS SECTION ======= */

.products {
  background: #fffef2;
  padding: 3rem 1rem;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #003366;
}

.product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.product-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  width: 220px;
  /* Small and consistent width */
  text-align: center;
}

.product-card img {
  width: 180px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card img:hover {
  transform: scale(1.05);
}

.product-card p {
  margin-top: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: #333;
}

/* ======= ABOUT SECTION ======= */

.about {
  background-color: white;
}

.about-image-banner{
  overflow: hidden;
}

.about-image-banner img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  transform: scale(1);
	transition: .3s ease-in-out;
}

.about-image-banner:hover img{
	transform: scale(1.2);
}

.about-text {
  margin-top: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: justify;
}

.about-text h2 {
  text-align: center;
  color: #F6C40D;
  margin-bottom: 1rem;
}

.about-text p strong {
  color: #F6C40D;
}

strong {
  color: #F6C40D;
}

/* ======= CONTACT SECTION ======= */
/* Animation */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply to contact section */

.contact-section {
  background: #f9f9f9;
  padding: 4rem 1rem;
  animation: fadeInUp 1.5s ease-out both;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

/* Animated elements */

.animate {
  animation: fadeInUp 1.2s ease both;
}

/* Responsive contact elements */

.contact-info-box,
.contact-form {
  flex: 1;
  min-width: 280px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.contact-info-box h3 {
  margin-bottom: 15px;
  color: #0057b8;
}

.contact-info-box p,
.contact-info-box a {
  font-size: 1rem;
  color: #333;
  text-decoration: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #08357d;
}

/* ======= FOOTER ======= */

footer {
  background: #eee;
  padding: 2rem;
  text-align: center;
}

/* ======= RESPONSIVE ======= */

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }

  .header-right {
    justify-content: center;
  }

  nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }
}

/* ================================ */

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* #preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: url('img/logo.png') no-repeat center;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  /* border-color: var(#ffffff) transparent var(#ffffff) transparent; */
/* border-radius: 50%; */
/* width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
} */


/* =================header1======= */
.header1 {
  color: #ffffff;
  background-color: #fff;
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(#ffffff), transparent 85%);
}

.header1 .logo {
  line-height: 1;
}

.header1 .logo img {
  max-height: 95px;
  margin-right: 8px;
}

.header1 .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 300;
  color: var(--heading-color);
}

.header1 .btn-getstarted,
.header1 .btn-getstarted:focus {
  color: #ffffff;
  background: var(#ffffff);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header1 .btn-getstarted:hover,
.header1 .btn-getstarted:focus:hover {
  color: #ffffff;
  background: color-mix(in srgb, var(#ffffff), transparent 15%);
}

@media (max-width: 1200px) {
  .header1 div {
    text-align: end;
  }

  .header1 .logo {
    order: 1;
  }

  .header1 .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header1 .navmenu {
    order: 3;
  }
}

.scrolled .header1 {
  border-color: #ffffff;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.navmenu li::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #0072ce;
  transition: 0.3s ease;
}

.navmenu li:hover.active {
  color: #005bb5;
  display: none;
}

.navmenu li:hover::after {
  width: 100%;
}

.navmenu .active {
  border-bottom: 2px solid #2487ce !important;
}

.navmenu .active::after:hover {
  display: none;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {

  .header1 div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header-left .logo {
    position: fixed;
    top: 20px;
    left: 50px;

  }

  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #2487ce;
    padding: 18px 15px;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
    margin: 0px 5px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #2487ce;
  }

  /* .navmenu .dropdown ul {
      margin: 0;
      padding: 10px 0;
      background: #ffffff;
      display: block;
      position: absolute;
      visibility: hidden;
      left: 14px;
      top: 130%;
      opacity: 0;
      transition: 0.3s;
      border-radius: 4px;
      z-index: 99;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
      min-width: 200px;
  }

  .navmenu .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      color: #124265;
  }

  .navmenu .dropdown ul a i {
      font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
      color: #2487ce;
  }

  .navmenu .dropdown:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
      top: 0;
      left: -90%;
      visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: -100%;
      visibility: visible;
  } */
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .header1 {
    padding: 40px 0;
  }

  .header-left .logo {
    top: 7px;
  }

  .mobile-nav-toggle {
    color: #124265;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #ffffff;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #2487ce;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
    margin: 0px 50px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, #ffffff, transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: #ffffff;
    color: #ffffff;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #2487ce;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #ffffff;
    color: #ffffff;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: #fff;
    border: 1px solid color-mix(in srgb, #ffffff, transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}


/* =================loader======= */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f0f0f 0%, #121212 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.5s ease;
}

.loader-container {
  position: relative;
  width: 140px;
  height: 140px;
  perspective: 800px;
  transform-style: preserve-3d;
}

.cube {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: cubeRotate 4s infinite ease-in-out;
}

.cube-face {
  position: absolute;
  width: 80px;
  height: 80px;
  /* background: rgba(255, 255, 255, 0.05); */
  background: url('../img/logo.png') no-repeat;
  background-size: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
  backface-visibility: visible;
  transform-style: preserve-3d;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.front {
  transform: translateZ(40px);
  /* background: linear-gradient(45deg, #3b82f6, #60a5fa); */
  background: url('../img/logo.png') no-repeat;
  background-size: cover;

}

.back {
  transform: rotateY(180deg) translateZ(40px);
  /* background: linear-gradient(45deg, #8b5cf6, #a78bfa); */
  background: url('../img/logo.png') no-repeat;
  background-size: cover;

}

.right {
  transform: rotateY(90deg) translateZ(40px);
  /* background: linear-gradient(45deg, #ec4899, #f472b6); */
  background: url('../img/logo.png') no-repeat;
  background-size: cover;
}

.left {
  transform: rotateY(-90deg) translateZ(40px);
  /* background: linear-gradient(45deg, #14b8a6, #2dd4bf); */
  background: url('../img/logo.png') no-repeat;
  background-size: cover;
}

.top {
  transform: rotateX(90deg) translateZ(40px);
  /* background: linear-gradient(45deg, #f59e0b, #fbbf24); */
  background: url('../img/logo.png') no-repeat;
  background-size: cover;
}

.bottom {
  transform: rotateX(-90deg) translateZ(40px);
  /* background: linear-gradient(45deg, #6366f1, #818cf8); */
  background: url('../img/logo.png') no-repeat center;
  background-size: cover;
}

.progress-bar {
  position: absolute;
  bottom: -50px;
  left: -30px;
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress {
  height: 100%;
  width: 0%;
  /* background: linear-gradient(to right, #3b82f6, #8b5cf6); */
  background: url('../img/logo.png') no-repeat;
  background-size: cover;
  transition: width 0.2s ease;
}

.loading-text {
  position: absolute;
  bottom: -80px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

@keyframes cubeRotate {
  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }

  25% {
    transform: rotateX(90deg) rotateY(90deg);
  }

  50% {
    transform: rotateX(180deg) rotateY(180deg);
  }

  75% {
    transform: rotateX(270deg) rotateY(270deg);
  }

  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

/* 
.preloader-done {
  transform: translateY(-100%);
  opacity: 0;
} */

.preloader-done {
  transform: scale(1.1) translate(-100%, -100%);
  opacity: 0;
}


/* ========= loaderlogo======== */

.loader-container1 {
  display: none;
  position: fixed;
  width: 100px;
  height: 100px;
  perspective: 800px;
  transform-style: preserve-3d;
  top: 16px;
  z-index: 1000;
  left: 10px;
}

.cube1 {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: cubeRotate 4s infinite ease-in-out;
}

.cube-face1 {
  position: absolute;
  width: 80px;
  height: 80px;
  background: url('../img/logo.png') no-repeat;
  background-size: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
  backface-visibility: visible;
  transform-style: preserve-3d;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.front1 {
  transform: translateZ(40px);
  background: url('../img/logo.png') no-repeat;
  background-size: cover;

}

.back1 {
  transform: rotateY(180deg) translateZ(40px);
  background: url('../img/logo.png') no-repeat;
  background-size: cover;

}

.right1 {
  transform: rotateY(90deg) translateZ(40px);
  background: url('../img/logo.png') no-repeat;
  background-size: cover;
}

.left1 {
  transform: rotateY(-90deg) translateZ(40px);
  background: url('../img/logo.png') no-repeat;
  background-size: cover;
}

.top1 {
  transform: rotateX(90deg) translateZ(40px);
  background: url('../img/logo.png') no-repeat;
  background-size: cover;
}

.bottom1 {
  transform: rotateX(-90deg) translateZ(40px);
  background: url('../img/logo.png') no-repeat center;
  background-size: cover;
}



/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #3e8de3;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, #F6C40D, transparent 20%);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
