:root {
  --blue:#5c5cf5;
  --gold:#FFC857;
}

body{
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.theme-green{
    color:var(--blue);
}
.theme-golden{
    color:var(--gold);
}


.h-one{font-size:40px; font-weight: 600; padding: 25px 0;}




section{
    padding: 50px 0;
}

.section-header{
    padding: 20px 0;
}

.section-header p{
    max-width: 900px;
}
/* TOPBAR */

.topbar {
  background: linear-gradient(45deg, var(--blue) 50%, var(--blue) 50%);
  color:#fff;
  padding:8px 0;
  font-size:14px;
}
.topbar a { color:#fff; margin-left:10px; }

.top-right{
    max-width: 150px;
}

/* ---------- TOPBAR RESPONSIVE FIX ---------- */

.topbar {
  font-size: 14px;
}

.top-left {
  white-space: nowrap;
}

.top-right {
  max-width: none;
}

/* Tablets & below */
@media (max-width: 768px) {

  .topbar .container-fluid {
    flex-wrap: wrap;
    gap: 6px;
  }

  .top-left {
    width: 100%;
    text-align: center;
    white-space: normal;
    font-size: 13px;
  }

  .top-right {
    width: 100%;
    text-align: center;
    margin-top: 4px;
  }

  .top-right a {
    margin: 0 8px;
  }
}

/* Mobile */
@media (max-width: 480px) {

  .topbar {
    padding: 6px 0;
    font-size: 12px;
  }

  .top-left i {
    margin-right: 4px;
  }

  .top-left span {
    display: none; /* hide | divider */
  }
}


/* header  */

.navbar-custom {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 9999;
}


.nav-inner {
    max-width: 1200px;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
    height: 100px;   /* 🔑 THIS FIXES COLLAPSE */
}


/* LOGO LEFT */
.nav-logo {
    flex: 0 0 auto;
}

.nav-logo img {
    height: 70px;
}


/* NAVIGATION CENTER */
.navbar-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: -webkit-box;
    list-style: none;
    margin: 0;
    padding: 0;
}


/* NAV LINKS */
.nav-link {
    color: #000;
    padding: 18px 22px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
}


.navbar-custom .nav-link {
    color: #000;
    padding: 18px 25px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    border-bottom: 2px solid #324e3d;
}

.nav-item {
    position: relative;
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    z-index: 99999;
}


/* MOBILE TOGGLE RIGHT */
.mobile-toggle {
    margin-left: auto;
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 992px) {
    .navbar-nav {
        position: static;
        transform: none;
        flex-direction: column;
        background: #fff;
        width: 100%;
        display: none;
        margin-top: 80px;
    }

    .navbar-nav.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }
}


/* Desktop Dropdown */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown > .nav-link::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    margin-left: 8px;
    transition: transform 0.3s;
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: none;
    z-index: 1000;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-item.dropdown:hover > .dropdown-menu-custom {
    display: block;
}

.dropdown-menu-custom > li {
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.dropdown-menu-custom > li > a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
    position: relative;
    padding-right: 35px;
}

.dropdown-menu-custom > li > a:hover {
    background: #f8f8f8;
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}

/* Submenu Level 2 */
.dropdown-menu-custom li.has-submenu > a::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-right: 2px solid #d59e06;
    border-bottom: 2px solid #d59e06;
    transform: translateY(-50%) rotate(-45deg);
    transition: transform 0.3s;
}

.dropdown-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    min-width: 280px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: none;
    z-index: 1001;
    padding: 0;
    margin: 0;
    list-style: none;
    border-left: 3px solid var(--gold);
}

.dropdown-menu-custom > li.has-submenu:hover > .dropdown-submenu {
    display: block;
}

.dropdown-submenu > li {
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.dropdown-submenu > li > a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.3s;
    position: relative;
    padding-right: 35px;
}

.dropdown-submenu > li > a:hover {
    background: #f8f8f8;
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}

/* Submenu Level 3 */
.dropdown-submenu li.has-submenu > a::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 2px solid #d59e06;
    border-bottom: 2px solid #d59e06;
    transform: translateY(-50%) rotate(-45deg);
    transition: transform 0.3s;
}

.dropdown-submenu-2 {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    min-width: 280px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: none;
    z-index: 1002;
    padding: 0;
    margin: 0;
    list-style: none;
    border-left: 3px solid #d59e06;
}

.dropdown-submenu > li.has-submenu:hover > .dropdown-submenu-2 {
    display: block;
}

.dropdown-submenu-2 > li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-submenu-2 > li > a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.3s;
}

.dropdown-submenu-2 > li > a:hover {
    background: #f8f8f8;
    color: #d59e06;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    background: transparent;
    border: none;
    color:#565656;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    display: none;
    margin-left: auto;
    margin-right: 10px;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #2b2a28 0%, #d59e06 100%);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    background: #d59e06;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.mobile-nav-title {
    color: white;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.mobile-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu > li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    transition: background 0.3s;
}

.mobile-menu > li > a:hover {
    background: rgba(0,0,0,0.2);
}

.mobile-menu .toggle-arrow {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    font-size: 12px;
}

.mobile-menu li.has-submenu.active > a .toggle-arrow {
    transform: rotate(180deg);
}

/* Mobile Submenu */
.mobile-submenu {
    background: rgba(0,0,0,0.2);
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-submenu.active {
    display: block;
    max-height: 1000px;
}

.mobile-submenu > li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-submenu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 35px 12px 45px;
    color: white;
    text-decoration: none;
    font-size: 13px;
    background: rgba(255,255,255,0.05);
    text-transform: uppercase;
}

.mobile-submenu > li > a:hover {
    background: rgba(255,255,255,0.1);
}

.mobile-submenu .toggle-arrow {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: transform 0.3s;
}

.mobile-submenu li.has-submenu.active > a .toggle-arrow {
    transform: rotate(180deg);
}

/* Level 3 Mobile Submenu */
.mobile-submenu-2 {
    background: rgba(0,0,0,0.3);
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-submenu-2.active {
    display: block;
    max-height: 1000px;
}

.mobile-submenu-2 > li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-submenu-2 > li > a {
    display: block;
    padding: 10px 60px 10px 55px;
    color: white;
    text-decoration: none;
    font-size: 12px;
    background: rgba(255,255,255,0.08);
}

.mobile-submenu-2 > li > a:hover {
    background: rgba(255,255,255,0.15);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    display: none;
}

.overlay.active {
    display: block;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-custom .navbar-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}


/* banner-section  */

.section-hero {
  background-color: #5c5cf50d;
  padding: 3.4rem 0 4.6rem 0;
}

.hero {
  /* We'll not use px to define the length and will use rem. */
  /* max-width: 1300px; */
  max-width: 130rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 3.2rem;
  margin: 0 auto;
  align-items: center;
  gap: 0 6.6rem;
}

.heading-primary {
  font-size: 3.2rem;
  color: #333;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.05;
  margin-bottom: 1.6rem;
}

.hero-description {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 2.8rem;
}

.hero-img-box {
  grid-column: 2/3;
  grid-row: 1 / 3;
}

.hero-img {
  width: 100%;
}

.btn:link,
.btn:visited {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  border-radius: 9px;
  /* margin-top: 4.8rem; */
  padding:10px 20px;
  text-decoration: none;

  transition: background-color 500ms;
}

.btn--fill:link,
.btn--fill:visited {
  background-color: var(--blue);
  color: #fff;
}

.btn--outline:link,
.btn--outline:visited {
  color: #555;
  background-color: #fff;
}

.btn--fill:hover,
.btn--fill:active {
  background-color: var(--gold);
  text-decoration: none;
}

.btn--outline:hover,
.btn--outline:active {
  background-color: #fdf2e9;
  /* Now we'll not use border as in border the outlines are on the outside. Instead we'll use the outline or box-shadow property */
  box-shadow: inset 0px 0px 0px 3px #fff;
  text-decoration: none;
  /* outline: #fff solid 3px; */
}

/* We'll create a utility class that can be used for any element by simply adding a class. */
.margin-right-btn {
  margin-right: 2.4rem;
}

.delivered-meals {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

.delivered-imgs img {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  margin-right: -1.6rem;
  outline: #fdf2e9 solid 3px;
}

.delivered-text {
  font-size: 2rem;
  font-weight: 600;
}

.delivered-text span {
  color: var(--blue);
}

/* about-us  */

       h1,
        span,
        h3,
        h4,
        h5,
        h6 {}
        a,
        a:hover,
        a:focus,
        a:active {
            text-decoration: none;
            outline: none;
        }
        
        a,
        a:active,
        a:focus {
            color: #6f6f6f;
            text-decoration: none;
            transition-timing-function: ease-in-out;
            -ms-transition-timing-function: ease-in-out;
            -moz-transition-timing-function: ease-in-out;
            -webkit-transition-timing-function: ease-in-out;
            -o-transition-timing-function: ease-in-out;
            transition-duration: .2s;
            -ms-transition-duration: .2s;
            -moz-transition-duration: .2s;
            -webkit-transition-duration: .2s;
            -o-transition-duration: .2s;
        }
        
        ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        img {
    max-width: 100%;
    height: auto;
}
        section {
            padding: 60px 0;
           /* min-height: 100vh;*/
        }

.sec-title{
  position:relative;
  z-index: 1;
  margin-bottom:60px;
}

.sec-title .title{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 15px;
}

.sec-title h1{
  position: relative;
  display: block;
  font-size:40px;
  line-height: 1.28em;
  color: #222222;
  font-weight: 600;
  padding-bottom:18px;
}

.sec-title span:before{
  position:absolute;
  content:'';
  left:0px;
  bottom:0px;
  width:50px;
  height:3px;
  background-color:#d1d2d6;
}

.sec-title .text{
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
  margin-top: 35px;
}

.sec-title.light span{
  color: #ffffff;
}

.sec-title.text-center span:before{
  left:50%;
  margin-left: -25px;
}

.list-style-one{
  position:relative;
}

.list-style-one li{
  position:relative;
  font-size:16px;
  line-height:26px;
  color: #222222;
  font-weight:400;
  padding-left:35px;
  margin-bottom: 12px;
}

.list-style-one li:before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0px;
    display: block;
    font-size: 18px;
    padding: 0px;
    color: #ff2222;
    font-weight: 600;
    -moz-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1.6;
    font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover{
  color: #44bce2;
}

.btn-style-one{
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 30px;
  color: #ffffff;
  padding: 10px 30px;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.02em;
  background-color: var(--blue);
}

.btn-style-one:hover{
  background-color: #0794c9;
  color: #ffffff;
}
.about-section{
  position: relative;
  padding: 120px 0 0px;
}

.about-section .sec-title{
  margin-bottom: 45px;
}

.about-section .content-column{
  position: relative;
  margin-bottom: 50px;
}

.about-section .content-column .inner-column{
  position: relative;
  padding-left: 30px;
}

.about-section .text{
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
}

.about-section .list-style-one{
  margin-bottom: 45px;
}

.about-section .btn-box{
  position: relative;
}

.about-section .btn-box a{
  padding: 15px 50px;
}

.about-section .image-column{
  position: relative;
}

.about-section .image-column .text-layer{
    position: absolute;
    right: -110px;
    top: 50%;
    font-size: 325px;
    line-height: 1em;
    color: #ffffff;
    margin-top: -175px;
    font-weight: 500;
}

.about-section .image-column .inner-column{
  position: relative;
  padding-left: 80px;
  padding-bottom: 0px;
}
.about-section .image-column .inner-column .author-desc{
    position: absolute;
    bottom: 16px;
    z-index: 1;
    background:var(--gold);
    padding: 10px 15px;
    left: 96px;
    width: calc(100% - 115px);
    border-radius: 50px;
    animation: floatY 6s ease-in-out infinite;
}
.about-section .image-column .inner-column .author-desc span{
    font-size: 21px;
    letter-spacing: 1px;
    text-align: center;
    color: #fff;
  margin: 0;
}
.about-section .image-column .inner-column .author-desc span{
    font-size: 16px;
    letter-spacing: 6px;
    text-align: center;
    color: #fff;
  display: block;
  font-weight: 400;
}
.about-section .image-column .inner-column:before{
    content: '';
    position: absolute;
    width: calc(50% + 80px);
    height: calc(100% + 160px);
    top: -80px;
    left: -3px;
    background: transparent;
    z-index: 0;
    border: 44px solid var(--blue);
}

.about-section .image-column .image-1{
  position: relative;
}
.about-section .image-column .image-2{
  position: absolute;
  left: 0;
  bottom: 0;
}

.about-section .image-column .image-2 img,
.about-section .image-column .image-1 img{
  box-shadow: 0 30px 50px rgba(8,13,62,.15);
      border-radius: 46px;
}

.about-section .image-column .video-link{
  position: absolute;
  left: 70px;
  top: 170px;
}

.about-section .image-column .video-link .link{
  position: relative;
  display: block;
  font-size: 22px;
  color: #191e34;
  font-weight: 400;
  text-align: center;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 30px 50px rgba(8,13,62,.15);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

/* floating-experience  */

.experience-float {
  position: absolute; /* or fixed if you want it always visible */
  bottom: 60px;
  right: 60px;

  background: #ffffff;
  padding: 20px 26px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);

  text-align: center;
  z-index: 10;

  animation: floatY 3s ease-in-out infinite;
}

.experience-float span {
  font-size: 26px;
  font-weight: 700;
  color: var(--blue);
  margin: 0;
}

.experience-float p {
  font-size: 14px;
  margin: 4px 0 0;
  color: #555;
}

/* Floating animation */
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (max-width: 576px) {
  .experience-float {
    right: 16px;
    bottom: 20px;
    padding: 14px 18px;
  }

  .experience-float h4 {
    font-size: 20px;
  }
}



/* ===============================
   RESPONSIVE BREAKPOINTS
================================ */

/* ---------- Large tablets & below (≤ 1024px) ---------- */
@media (max-width: 1024px) {

  .hero {
    gap: 0rem;
    padding: 0 2.4rem;
  }

  .heading-primary {
    font-size: 2.8rem;
  }

  .about-section {
    padding: 90px 0 60px;
  }

  .about-section .image-column .inner-column {
    padding-left: 30px;
  }

  .about-section .image-column .inner-column:before {
    width: 100%;
    height: 100%;
    top: -40px;
    border-width: 30px;
  }
}

/* ---------- Tablets (≤ 768px) ---------- */
@media (max-width: 768px) {

  /* HERO */
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-img-box {
    grid-column: auto;
    grid-row: auto;
    margin-top: 3rem;
  }

  .heading-primary {
    font-size: 2.4rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 1.4rem;
  }

  .delivered-meals {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.6rem;
  }

  /* ABOUT SECTION */
  .about-section .content-column .inner-column {
    padding-left: 0;
  }

  .about-section .image-column {
    margin-top: 3rem;
  }

  .about-section .image-column .inner-column {
    padding-left: 0;
  }

  .about-section .image-column .inner-column:before {
    display: none;
  }

  .about-section .image-column .text-layer {
    display: none;
  }

  .about-section .image-column .video-link {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .sec-title span {
    font-size: 32px;
  }
}

/* ---------- Mobile (≤ 576px) ---------- */
@media (max-width: 576px) {

  .section-hero {
    padding: 1rem 0 3rem;
  }

  .heading-primary {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1.3rem;
  }

  .btn {
    font-size: 0.95rem;
    padding: 10px 16px;
  }

  .margin-right-btn {
    margin-right: 0;
    margin-bottom: 1rem;
    display: block;
  }

  .delivered-text {
    font-size: 1.6rem;
    text-align: center;
  }

  /* ABOUT */
  .sec-title span {
    font-size: 26px;
  }

  .about-section {
    padding: 70px 0 40px;
  }

  .about-section .image-column .inner-column .author-desc {
    left: 10px;
    width: calc(100% - 20px);
    font-size: 14px;
  }

  .about-section .image-column .inner-column .author-desc span {
    font-size: 16px;
  }

  .about-section .image-column .inner-column .author-desc span {
    font-size: 13px;
    letter-spacing: 2px;
  }
}

/* ---------- Small phones (≤ 400px) ---------- */
@media (max-width: 400px) {

  .heading-primary {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 1.2rem;
  }

  .sec-title span {
    font-size: 22px;
  }
}

/* PRODUCT-SECTION  */

.security-solutions-header-section {
    text-align: center;
    margin-bottom: 60px; 
}

.security-solutions-main-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.security-solutions-subtitle-text {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.security-product-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.security-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.security-product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.security-product-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.security-category-badge {
    display: inline-block;
    background-color: #e8eaf6;
    color: #5e35b1;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
    width: fit-content;
    border: none;
}

.security-product-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.security-product-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.security-learn-more-link {
    color: #5e35b1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
    width: fit-content;
}

.security-learn-more-link:hover {
    color: #5e35b1;
    gap: 12px;
}

.security-learn-more-link::after {
    content: '→';
}

@media (max-width: 768px) {
    .security-solutions-main-title {
        font-size: 36px;
    }

    .security-solutions-subtitle-text {
        font-size: 16px;
    }

    .security-product-body {
        padding: 24px;
    }
}

.holo-btn{
  border: 1px solid var(--blue);
  border-radius: 5px;
  padding: 10px 20px;
  color: var(--blue); 
}

.holo-btn:hover{
  border: 1px solid var(--blue);
  border-radius: 5px;
  padding: 10px 40px;
  color: #fff;

  transition: all 0.3s ease;
  background: var(--blue);
}

/* why-choose-us  */

.main-section-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    align-items: center;
    position: relative;
    padding: 50px 0;
}

.floating-decoration-top {
    position: absolute;
    width: 80px;
    height: 80px;
    /* border: 2px dotted rgba(45, 135, 91, 0.2); */
    background-image: url(../image/img/shape-2.webp);
    border-radius: 50%;
    top: 80px;
    right: 50%;
    animation: float-decoration 6s ease-in-out infinite;
}

.floating-decoration-bottom {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px dotted rgb(92 92 245 / 28%);
    border-radius: 50%;
    top: 100px;
    left: 5%;
    animation: mymove 40s infinite;
}
@keyframes mymove {
  50% {transform: rotate(360deg);}
}

.image-gallery-section {
    position: relative;
    height: 600px;
    perspective: 1000px;
}

.image-card-primary {
    position: absolute;
    width: 300px;
    height: 300px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
    top: 0px;
    left: 275px;
    z-index: 3;
    opacity: 0;
    animation: slide-in-left 0.8s ease-out 0.2s forwards;
    border: 5px solid #ffffff;
}

.image-card-primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-card-primary:hover img {
    transform: scale(1.05);
}

.image-card-secondary {
    position: absolute;
    width: 280px;
    height: 320px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
    bottom: 80px;
    left: 50px;
    z-index: 2;
    opacity: 0;
    animation: slide-in-left 0.8s ease-out 0.4s forwards;
    border: 5px solid #ffffff;

}

.image-card-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-card-secondary:hover img {
    transform: scale(1.05);
}

.image-card-tertiary {
    position: absolute;
    width: 300px;
    height: 320px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    bottom: 0;
    right: 80px;
    z-index: 1;
    opacity: 0;
    animation: slide-in-left 0.8s ease-out 0.6s forwards;
}

.image-card-tertiary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-card-tertiary:hover img {
    transform: scale(1.05);
}

.content-section-wrapper {
    padding: 40px;
    opacity: 0;
    animation: fade-in-right 0.8s ease-out 0.3s forwards;
}

.tag-label-intro {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0;
    animation: slide-down 0.6s ease-out 0.4s forwards;
}

.leaf-icon-emoji {
    font-size: 20px;
}

.main-title-text {
    font-size: 52px;
    font-weight: 800;
    color: #1a3d2e;
    line-height: 1.2;
    margin-bottom: 25px;
    opacity: 0;
    animation: slide-down 0.6s ease-out 0.6s forwards;
}

.description-paragraph {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0;
    animation: slide-down 0.6s ease-out 0.8s forwards;
}

.checklist-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.checklist-item-unit {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fade-in-up 0.6s ease-out forwards;
}

.checklist-item-unit:nth-child(1) {
    animation-delay: 1s;
}

.checklist-item-unit:nth-child(2) {
    animation-delay: 1.1s;
}

.checklist-item-unit:nth-child(3) {
    animation-delay: 1.2s;
}

.checklist-item-unit:nth-child(4) {
    animation-delay: 1.3s;
}

.checkmark-icon-circle {
    width: 24px;
    height: 24px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 14px;
}

.checklist-item-text {
    font-size: 15px;
    color: #555;
    font-weight: 500;
}

.bottom-action-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    opacity: 0;
    animation: slide-down 0.6s ease-out 1.4s forwards;
}

.primary-action-button {
    background: var(--gold);
    color: #1a3d2e;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 217, 102, 0.3);
}

.primary-action-button:hover {
    background: #ffe066;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 217, 102, 0.4);
}

.button-arrow-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.primary-action-button:hover .button-arrow-icon {
    transform: translateX(5px);
}

.donation-card-component {
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.donation-card-component:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.donation-icon-badge {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2d875b 0%, #1a3d2e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.donation-text-wrapper {
    text-align: left;
}

.donation-label-small {
    font-size: 12px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.donation-amount-display {
    font-size: 22px;
    font-weight: 700;
    color: #1a3d2e;
}

.floating-leaf-particle {
    position: absolute;
    font-size: 24px;
    z-index: 1;
    opacity: 0.4;
    animation: float-leaf 6s ease-in-out infinite;
}

.floating-leaf-particle2 {
    position: absolute;
    font-size: 24px;
    z-index: 1;
    /* opacity: 0.4; */
    /* animation: float-leaf 6s ease-in-out infinite; */
}

.floating-leaf-one {
    top: 150px;
    right: 100px;
    animation-delay: 0s;
}

.floating-leaf-two {
    top: 400px;
    /* left: 50px; */
    animation-delay: 2s;
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float-decoration {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(15px, -15px);
    }
}

@keyframes float-leaf {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.7;
    }
}

@media (max-width: 1024px) {
    .main-section-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .image-gallery-section {
        height: 500px;
    }

    .main-title-text {
        font-size: 40px;
    }

    .content-section-wrapper {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .main-title-text {
        font-size: 32px;
    }

    .checklist-grid-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .bottom-action-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .image-gallery-section {
        height: 400px;
    }

    .image-card-primary {
        width: 280px;
        height: 320px;
    }

    .image-card-secondary {
        width: 220px;
        height: 260px;
    }

    .image-card-tertiary {
        width: 250px;
        height: 280px;
    }
}

/* testimonial-section  */

.ai-section {
  background: #f4f6f8;
  padding: 50px 0;
}

/* LEFT */
.ai-left {
  background: #f1f3f5;
  border-radius: 24px;
}

.ai-title {
  font-size: 55px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.ai-title span {
  color: var(--blue);
  font-weight: 100;
}

.ai-desc {
  font-size: 15px;
  color: #6b7280;
  /* max-width: 480px; */
  text-align: center;
}

.ai-icon {
  font-size: 26px;
  color: #6c63ff;
}

.ai-number {
  font-size: 50px;
  font-weight: 700;
}

.ai-label {
  font-size: 14px;
  color: #6b7280;
}

/* RIGHT */
.ai-right {
  background: url('../image/img/testimonial-box-bg.jpg') no-repeat;
  border-radius: 28px;
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.ai-right-inner {
  position: relative;
  z-index: 2;
}

.ai-badge {
  font-size: 13px;
  letter-spacing: 2px;
  color: #f87171;
}

.ai-right-title {
  font-size: 36px;
  font-weight: 600;
}

/* TESTIMONIAL */
.testimonial-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  gap: 25px;
  align-items: center;
}

.testimonial-text {
  flex: 1;
}

.stars {
  color: #f87171;
}

.quote {
  font-size: 15px;
  line-height: 1.7;
  color: #e5e7eb;
}

.name {
  font-weight: 600;
}

.role {
  font-size: 14px;
  color: #9ca3af;
}

.testimonial-img img {
  width: 160px !important;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
}

/* Owl */
.owl-dots {
  margin-top: 20px;
  text-align: center;
}

.owl-dot span {
  background: #64748b !important;
}

.owl-dot.active span {
  background: #f87171 !important;
}

.profile-section { 
    border-radius: 20px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; 
}

.section-title {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.avatars-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    position: relative;
    width: 100%;
}

.avatar-wrapper {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-wrapper:nth-child(1) { left: 0; z-index: 5; }
.avatar-wrapper:nth-child(2) { left: 45px; z-index: 4; }
.avatar-wrapper:nth-child(3) { left: 90px; z-index: 3; }
.avatar-wrapper:nth-child(4) { left: 135px; z-index: 2; }
.avatar-wrapper:nth-child(5) { left: 180px; z-index: 1; }

.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.avatar:hover {
    transform: scale(1.1);
}

.avatar-info {
    margin-top: 40px;
    text-align: center;
}

.info-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.count-badge {
    display: inline-block;
    background: rgba(255, 107, 157, 0.2);
    color: #ff6b9d;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* VARIATIONS */
.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 20px 0;
}

.avatars-minimal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: -15px;
    flex-wrap: wrap;
}

.avatar-small {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.9);
    object-fit: cover;
    margin-left: -15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.avatar-small:first-child {
    margin-left: 0;
}

.avatar-small:hover {
    transform: scale(1.15) translateY(-5px);
    z-index: 10;
}

/* Different Background Styles */
.profile-section.dark {
    background: rgba(10, 20, 40, 0.7);
}


.profile-section.glass {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .profile-section {
        padding: 20px;
    }

    .avatars-container {
        height: 70px;
    }

    .avatar {
        width: 60px;
        height: 60px;
    }

    .avatar-wrapper:nth-child(1) { left: 0; }
    .avatar-wrapper:nth-child(2) { left: 38px; }
    .avatar-wrapper:nth-child(3) { left: 76px; }
    .avatar-wrapper:nth-child(4) { left: 114px; }
    .avatar-wrapper:nth-child(5) { left: 152px; }
}

/* SECTION BACKGROUND */
    .contact-section {
      background: url('../image/img/contact-image-bg.jpg') no-repeat;
      border-radius: 32px;
      padding: 70px 60px;
      overflow: hidden;
    }

    /* LEFT CONTENT */
    .contact-badge {
      display: inline-block;
      background: #fff;
      padding: 6px 14px;
      font-size: 15px;
      font-weight: 600;
      border-radius: 20px;
      box-shadow: 0 6px 18px rgba(0,0,0,.1);
      margin-bottom: 25px;
      color:var(--blue);
    }

    .contact-title {
      font-size: 52px;
      font-weight: 600;
      line-height: 1.15;
      color: #2b2f36;
    }

    .contact-title span {
      color: #6b6f76;
      font-weight: 500;
    }

    .contact-section .contact-info {
      margin-top: 80px;
    }

    .info-box {
      display: flex;
      align-items: center;
      gap: 15px;
      background: #ffffff00;
      padding: 14px 18px;
      border-radius: 14px;
      box-shadow: 0 10px 25px rgba(0,0,0,.12);
      margin-bottom: 15px;
      max-width: 320px;
    }

    .info-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: #f1f3f6;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--blue);
    }


    .info-text {
      font-size: 14px;
      color: #4b5563;
    }

    /* FORM CARD */
    .form-card {
      background: #fff;
      border-radius: 28px;
      padding: 40px 35px;
      box-shadow: 0 30px 60px rgba(0,0,0,.2);
      max-width: 420px;
      margin-left: auto;
    }

    .form-title {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 25px;
    }

    .form-label {
      font-size: 13px;
      font-weight: 500;
      margin-bottom: 6px;
    }

    .form-control {
      border: none;
      border-bottom: 1px solid #e5e7eb;
      border-radius: 0;
      padding-left: 0;
      padding: 10px 0;
      font-size: 14px;
      font-family: cursive;
    }

    .form-control:focus {
      box-shadow: none;
      border-color: #111;
    }

    .attach {
      font-size: 14px;
      color: #4b5563;
      margin: 25px 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .submit-btn {
      background: #fff;
      color: var(--blue);
      border-radius: 30px;
      border: 1px solid var(--blue);
      padding: 12px;
      /* border: none; */
      width: 100%;
      box-shadow: 0 12px 25px rgba(0,0,0,.35);
    }
    .submit-btn:hover{
      background: var(--blue);
      color: #fff;
      transition: all 0.3s ease;
    }
    

    @media (max-width: 991px) {
      .contact-section {
        padding: 50px 30px;
      }

      .form-card {
        margin: 40px auto 0;
      }
    }

    .info-text a {
    color: #4b5563;
    text-decoration: none;
    }

    .info-text a:hover {
    text-decoration: none;
    }

@media (max-width: 767px) {

  .nav-logo img {
      height: 70px;
      margin-left: 15px;
  }

  /* Layout */
  .main-section-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Image gallery */
  .image-gallery-section {
    height: 380px;
  }

  .image-card-primary {
    width: 220px;
    height: 180px;
    left: 35%;
    transform: translateX(-35%);
  }

  .image-card-secondary {
    width: 200px;
    height: 230px;
    left: 10px;
    bottom: 20px;
  }

  .image-card-tertiary {
    width: 220px;
    height: 250px;
    right: 10px;
    bottom: 0;
  }

  /* Content */
  .content-section-wrapper {
    padding: 20px 15px;
    text-align: center;
  }

  .main-title-text {
    font-size: 30px;
  }

  .description-paragraph {
    font-size: 15px;
  }

  /* Checklist */
  .checklist-grid-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .checklist-item-unit {
    justify-content: center;
  }

  /* Actions */
  .bottom-action-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* Floating elements */
  .floating-decoration-top,
  .floating-decoration-bottom,
  .floating-leaf-particle,
  .floating-leaf-particle2 {
    display: none;
  }

  /* Testimonial */
  .ai-title {
    font-size: 32px;
  }

  .ai-right {
    padding: 25px;
  }

  .testimonial-box {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-img img {
    width: 120px !important;
    height: 150px;
  }

  /* Profile avatars */
  .avatar {
    width: 56px;
    height: 56px;
  }

  .avatar-wrapper:nth-child(2) { left: 34px; }
  .avatar-wrapper:nth-child(3) { left: 68px; }
  .avatar-wrapper:nth-child(4) { left: 102px; }
  .avatar-wrapper:nth-child(5) { left: 136px; }
}

@media (min-width: 768px) and (max-width: 1024px) {

  /* Layout */
  .main-section-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  /* Image gallery */
  .image-gallery-section {
    height: 500px;
  }

  .image-card-primary {
    width: 280px;
    height: 300px;
    left: 50%;
    transform: translateX(-50%);
  }

  .image-card-secondary {
    width: 240px;
    height: 280px;
    left: 30px;
  }

  .image-card-tertiary {
    width: 260px;
    height: 300px;
    right: 30px;
  }

  /* Content */
  .content-section-wrapper {
    padding: 30px;
  }

  .main-title-text {
    font-size: 38px;
  }

  /* Checklist */
  .checklist-grid-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Actions */
  .bottom-action-container {
    gap: 25px;
  }

  /* Testimonial */
  .ai-title {
    font-size: 42px;
  }

  .testimonial-box {
    gap: 20px;
  }

  .testimonial-img img {
    width: 140px !important;
    height: 180px;
  }
}

/* FAQ's  */

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Title styling without heading tags */
.faq-title {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa 0%, var(--blue) 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -1px;
    animation: slideInDown 0.8s ease-out;
}

.faq-subtitle {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 50px;
    animation: slideInUp 0.8s ease-out 0.1s backwards;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accordion styles */
.faq-item {
    margin-bottom: 16px;
    border-radius: 12px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    overflow: hidden;
    animation: fadeIn 0.6s ease-out backwards;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:nth-child(1) { animation-delay: 0.2s; }
.faq-item:nth-child(2) { animation-delay: 0.3s; }
.faq-item:nth-child(3) { animation-delay: 0.4s; }
.faq-item:nth-child(4) { animation-delay: 0.5s; }
.faq-item:nth-child(5) { animation-delay: 0.6s; }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    font-size: 16px;
    font-weight: 600;
    color: #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    color: #60a5fa;
}

.faq-question-text {
    flex: 1;
    margin-right: 20px;
}

/* Toggle icon */
.faq-toggle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: bold;
    color: #0f172a;
    font-size: 18px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.5);
}

/* Answer styling */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(15, 23, 42, 0.4);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 24px 24px 24px;
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 15px;
}

/* Decorative elements */
.faq-decorator {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    opacity: 0.1;
    pointer-events: none;
}

.decorator-1 {
    top: -20px;
    right: -20px;
}

.decorator-2 {
    bottom: -20px;
    left: -20px;
}

/* Icon styling */
.question-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #f472b6, #a78bfa);
    border-radius: 50%;
    margin-right: 12px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.faq-item:hover .question-icon {
    opacity: 1;
}

/* Category badges */
.faq-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(96, 165, 250, 0.2);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: #60a5fa;
    margin-right: 8px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-title {
        font-size: 32px;
    }

    .faq-question {
        padding: 18px;
    }

    .faq-answer-content {
        padding: 0 18px 18px 18px;
    }
}


.consec-product-section { 
    border-radius: 20px;
    padding: 40px; 
}

.consec-category-buttons {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.consec-category-btn {
    padding: 12px 30px;
    border: 2px solid #667eea;
    background: white;
    color: #667eea;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}

.consec-category-btn.active,
.consec-category-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.consec-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.consec-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.consec-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.consec-product-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.consec-product-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.consec-product-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.consec-product-description {
    font-size: 14px;
    color: #666;
    flex-grow: 1;
}

.consec-product-price {
    font-size: 22px;
    font-weight: 800;
    color: #667eea;
    margin: 10px 0;
}

.consec-product-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 25px;
}

.consec-carousel-wrapper {
    display: none;
}

.consec-carousel-wrapper.active {
    display: block;
}





























/* ================================
   GLOBAL LAZY LOAD SYSTEM
================================ */

.lazy-section {
  opacity: 0;
  transform: translateY(40px);
  transition: 
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}

.lazy-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional variations */
.lazy-fade {
  transform: none;
}

.lazy-left {
  transform: translateX(-40px);
}

.lazy-right {
  transform: translateX(40px);
}

.lazy-zoom {
  transform: scale(0.95);
}

.is-visible.lazy-left,
.is-visible.lazy-right,
.is-visible.lazy-zoom {
  transform: none;
}

/* Reduce motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .lazy-section {
    transition: none;
    transform: none;
    opacity: 1;
  }
}



/* Footer Styles */
footer {
    background-image:linear-gradient(135deg, #5c5cf53b 0%, #5c5cf5 100%), url(../image/img/footer-bg.jpg);
    color: #b0b0b0;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 60px;
    padding-bottom: 30px; 
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Logo Section */
.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #ff5544;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color:var(--gold);
    transform: translateY(-3px);
}

/* Column Heading */
.footer-column span {
    color: white;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 20px;
    text-align: left;
}

/* Quick Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top:25px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color:var(--gold);
    padding-left: 10px;
    transition: all 0.5s ease;
}

/* Contact Section */
.contact-item {
    margin-top: 25px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color:#fff;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-info p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    color: #fff ;
}

.contact-info p a{
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    color: #fff ;
    text-decoration: none;
}

.contact-info p a:hover{
    color: var(--gold);
}

/* Newsletter Section */
.newsletter-input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    background-color: #2a2a2a;
    color: white;
    font-size: 14px;
    margin-bottom: 15px;
}

.newsletter-input::placeholder {
    color: #e9e9e9;
}

.newsletter-input:focus {
    outline: none;
    background-color: #e9e9e9;
    box-shadow: var(--gold);
}

.signup-btn {
    width: 100%;
    padding: 12px 20px;
    background-color: var(--gold);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signup-btn:hover {
    background-color:var(--blue);
}

.newsletter-text {
    font-size: 13px;
    color: #fff;
    margin-top: 15px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p a{
    text-decoration: none;
    color: var(--gold);

}

.copyright {
    font-size: 13px;
    color: #fff;
}

.footer-links-bottom {
    display: flex;
    gap: 30px;
}

.footer-links-bottom a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: var(--gold);
}


/* Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .go-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .footer-logo {
        gap: 15px;
    }

    .newsletter-input,
    .signup-btn {
        font-size: 14px;
    }
}

/* Floating Wrapper */
.floating-contact {
    position: fixed;
    left: 0;
    top: 75%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Button Base */
.float-btn {
    position: relative;
    display: flex;
    align-items: center;
    width: 52px;
    height: 52px;
    border-radius: 0 30px 30px 0;
    text-decoration: none;
    overflow: hidden;
    transition: width 0.35s ease;
}

/* Icons */
.float-btn img {
    width: 40px;
    height: 40px;
    /* margin: 0 auto; */
}

/* Text Slide */
.float-text {
    position: absolute;
    left: -220px;
    white-space: nowrap;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    transition: left 0.35s ease;
}

/* Hover Effect */
.float-btn:hover {
    width: 240px;
}

.float-btn:hover .float-text {
    left: 32px;
}

/* Call Button */
.call-btn {
    background: #324e3d;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .float-btn:hover {
        width: 200px;
    }
}


/* Go To Top Button */
#consecGoTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

#consecGoTopBtn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#consecGoTopBtn:hover {
    transform: scale(1.1);
}
