/* ===============================
   ROOT VARIABLES
   =============================== */

:root {
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --primary-color: #0B2D4F;
  --secondary-color: #F57C00;
  --dark-navy: #1F2A44;
  --light-bg: #F2F4F8;
  --light: #F8FAFC;
  --text: #1e293b;
}

/* ===============================
                NAVBAR
     =============================== */

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201,162,77,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"
    );
}

.navbar-toggler {
  border-color: var(--primary-color);
}

.navbar-custom {
  background-color: white;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  border-bottom: 1px solid rgb(63, 63, 63);
}

/* Scrolled state navbar (if needed)

.navbar-custom.scrolled {
  background: rgba(28, 28, 28, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
*/

.navbar .nav-link {
  color: var(--dark-navy) !important;
  font-weight: 500;
}

.navbar .nav-link:hover {
  color: var(--secondary-color) !important;
}

.navbar-nav .nav-link.active {
  color: var(--secondary-color) !important;
  text-decoration: underline 2px;
  text-underline-offset: 5px;
}

.brand-logo {
  height: 50px;
}

.dropdown-menu .dropdown-item:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.dropdown-menu .dropdown-item.active {
  background-color: var(--primary-color);
  color: var(--secondary-color) !important;
}

.navbar .btn {
  border-radius: 5px;
  background: var(--dark-navy);
  color: #fff;
  font-weight: 600;
}

.navbar .btn:hover {
  background: #195E96;
  color: #fff;
}


/* ===============================
   FOOTER
   =============================== */

.hotel-footer {
  background-color: var(--primary-color);
  color: #d6e3df;
}

.footer-logo {
  height: 50px;
}

.footer-brand h3 {
  color: #ffffff;
  font-weight: 700;
}

.footer-brand small {
  color: #b8d4c8;
  letter-spacing: 1px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 10px;
}

.footer-title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cfe2db;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-contact {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact i {
  color: #e6c87a;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--dark-navy);
  color: #ffffff;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.footer-bottom {
  background-color: var(--dark-navy);
  font-size: 14px;
  color: #b8d4c8;
}

/* ===============================
            CTA
     =============================== */

.secure-cta {
  position: relative;
  background-image: url("../img/CTA-Bg.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 60px;
  overflow: hidden;
}

/* GRADIENT OVERLAY – STRONG LEFT, LIGHT RIGHT */
.secure-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(244, 124, 32, 0.95) 0%,
      rgba(244, 124, 32, 0.85) 40%,
      rgba(244, 124, 32, 0.45) 70%,
      rgba(244, 124, 32, 0.15) 100%);
  z-index: 1;
}

/* Keep content above overlay */
.secure-cta>* {
  position: relative;
  z-index: 2;
}

.secure-cta i {
  color: gold;
}



/* ===============================
            Responsive
     =============================== */

/* Fix mobile dropdown overlap */
@media (max-width: 991px) {

  .navbar-collapse {
    background: white;
    padding: 20px;
    margin-top: 10px;
    border-radius: 12px;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    padding: 12px 0;
  }
}

@media (max-width: 575px) {

  /* NAVBAR */
  .navbar-nav {
    gap: 0 !important;
    text-align: center;
  }

  .navbar .btn {
    width: 100%;
    margin: 10px 0 0;
  }

  .brand-logo {
    height: 40px;
  }

  /* FOOTER */
  .footer-logo {
    height: 40px;
  }

  .footer-text,
  .footer-links a,
  .footer-contact li {
    font-size: 14px;
  }
}


/* ===============================
        GLOBAL STYLES
        =============================== */
html {
  width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  overflow-x: hidden;
  background-color: var(--light-bg);
  font-family: var(--font-body);
}

h1,
h2,
h3,
span {
  font-family: var(--font-heading);
}


.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
}

.btn-primary:hover {
  background: #195E96;
  color: #fff;
}

.sub-heading {
  color: var(--secondary-color);
}

.highlite {
  color: var(--secondary-color);
}

.Hyer-link {
  text-decoration: none;
  color: inherit
}

/* ===============================
   PREMIUM UI GLOBAL SYSTEM
=============================== */

/* BETTER CONTAINER WIDTH */
.container {
  max-width: 1200px;
}

/* PREMIUM SHADOW */
.shadow-soft {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* PREMIUM HOVER LIFT */
.hover-lift {
  transition: 0.35s;
}

.hover-lift:hover {
  transform: translateY(-12px);
}

/* PREMIUM BUTTON */
.btn-premium {
  background: var(--primary-color);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
  border: none;
}

.btn-premium:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}


/* =======================
              index 
    ========================= */

/*------------ Hero Section ----------*/
.hero {
  background:
    linear-gradient(to right,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.65) 35%,
      rgba(0, 0, 0, 0.35) 60%,
      rgba(0, 0, 0, 0.10) 80%,
      rgba(0, 0, 0, 0.00) 100%),
    url("../img/H&H-Bg.png");

  background-size: cover;
  background-position: top center;
  display: flex;
  align-items: center;
  color: #fff;
  min-height: 90vh;
  height: auto;
  padding-top: 90px;
  padding-bottom: 60px;

}

.hero-content {
  height: 370px;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  justify-content: space-evenly;
  max-width: 620px;
}

.hero h1 {
  font-size: 45px;
  font-weight: 700;
  color: #fff;
}

.hero p {
  font-size: 18px;
  color: #eaeaea;
}

.hero .btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  align-self: flex-start;
}

.hero .btn:hover {
  background: #195E96;
  color: #fff;
  align-self: flex-start;
}

/*------------------ about us ----------------------*/

.about-securestore h2 {
  color: var(--primary-color);
  line-height: 1.2;
}

.sub-heading {
  color: var(--secondary-color);
  letter-spacing: 1px;
}

/*--------------- storage usecase section ---------------*/

.storage-usecase {
  background-color: #ffffff;
}

.storage-usecase h2 {
  color: var(--primary-color);
}

.usecase-card h5 {
  margin-bottom: 8px;
}

.usecase-card p {
  margin-bottom: 0%;
}

/* Card base */
.usecase-card {
  background: var(--light-bg);
  padding: 20px 20px 30px 20px;
  border-radius: 16px;
  transition: all 0.35s ease;
  border: 1px solid rgba(11, 45, 79, 0.1);
}

/* Hover */
.usecase-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--primary-color);
  border-color: rgba(11, 45, 79, 0.15);
}

/* Image */
.usecase-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.usecase-card:hover .usecase-img {
  transform: scale(1.05);
}

/* Title */
.usecase-card h5 {
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.usecase-card:hover h5 {
  color: var(--secondary-color);
}

/* Text */
.usecase-card p {
  font-size: 15px;
  line-height: 1.7;
  padding-bottom: 25px;
}

/*--------- Customer-centric ----------*/

.flip-card {
  perspective: 1000px;
  height: 260px;
}

.flip-card-h2 {
  color: var(--primary-color);
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);

}

/* FRONT */
.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
}

/* IMAGE SIDE */
.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BACK SIDE */
.flip-back {
  background: #000000a4;
  color: #fff;
  padding: 25px;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/*=======================
      index responsive
==========================*/

/* mobile Responsive */

@media (max-width:375px) {

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 14px;
  }

}


@media (max-width: 575px) {

  /* ================= HERO ================= */
  .hero {
    height: auto;
    padding: 120px 0px 70px;
    background: linear-gradient(to right,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.65) 35%,
        rgba(0, 0, 0, 0.35) 60%,
        rgba(0, 0, 0, 0.10) 80%,
        rgba(0, 0, 0, 0.00) 100%),
      url("../img/m-bg.png")center center/cover no-repeat;
  }

  .hero-content {
    height: auto;
    max-width: 100%;
    padding-top: 0;
    gap: 20px;
    justify-content: space-evenly;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.5;
  }

  .hero p {
    font-size: 15px;
  }

  .hero .btn {
    margin-top: 10px;
    padding: 10px 18px;
    font-size: 15px;
  }

  /* ================= ABOUT ================= */
  .about-securestore h2 {
    font-size: 26px;
  }

  .about-securestore p {
    font-size: 15px;
  }

  /* ================= USE CASES ================= */
  .usecase-img {
    height: 180px;
  }

  .usecase-card {
    padding: 16px;
  }


  .usecase-card p {
    font-size: 14px;
  }

  /* ================= FLIP CARDS ================= */
  .flip-card {
    height: 230px;
  }

  .flip-back h4 {
    font-size: 18px;
  }

  .flip-back p {
    font-size: 14px;
  }

  /* ================= CTA ================= */
  .secure-cta {
    padding: 40px 20px;
    background-position: center;
    text-align: center;
  }

  .secure-cta h2 {
    font-size: 22px;
  }

  .secure-cta p {
    font-size: 15px;
  }

  .secure-cta .btn {
    width: 100%;
    text-align: center;
  }

  .secure-cta .d-flex {
    flex-direction: column;
  }

  .highlite {
    color: inherit;
  }
}


/* Tablet Responsive */

@media (min-width: 576px) and (max-width: 991px) {

  /* ================= HERO ================= */
  .hero {
    height: 60vh;
    background-position: top center right;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 17px;
  }

  /* ================= ABOUT ================= */
  .about-securestore h2 {
    font-size: 32px;
  }

  /* ================= USE CASES ================= */
  .usecase-img {
    height: 200px;
  }

  /* ================= FLIP CARDS ================= */
  .flip-card {
    height: 250px;
  }

  .flip-back p {
    font-size: 15px;
  }

  /* ================= CTA ================= */
  .secure-cta {
    padding: 50px 40px;
  }

  .secure-cta h2 {
    font-size: 32px;
  }
}

/* ===============================================
                Home- v2 
   ============================================ */

/*------------ Hero Section ----------*/
/* HERO V2 */
.hero-v2 {
  background: linear-gradient(135deg, var(--primary-color), #0E3A64);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  height: auto;
}

.hero-badge {
  background: var(--secondary-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 15px;
}

.hero-content-v2 h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content-v2 p {
  opacity: 0.9;
  margin-bottom: 25px;
}

/* SEARCH BOX */
.hero-search {
  display: flex;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 25px;
  max-width: 450px;
}

.hero-search input {
  border: none;
  padding: 14px 18px;
  flex: 1;
  outline: none;
}

.hero-search button {
  background: var(--secondary-color);
  border: none;
  padding: 14px 25px;
  color: #fff;
  font-weight: 600;
}

/* FEATURES */
.hero-features span {
  margin-right: 20px;
  font-size: 14px;
  opacity: 0.9;
}

.hero-features i {
  color: var(--secondary-color);
  margin-right: 6px;
}

/* RIGHT CARDS */
.hero-cards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.storage-card {
  background: #fff;
  color: var(--primary-color);
  padding: 20px;
  border-radius: 15px;
  width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.storage-card span {
  font-weight: bold;
  color: var(--secondary-color);
}

.storage-card.highlight {
  transform: translateX(60px);
  background: var(--secondary-color);
  color: #fff;
  transform: translateX(60px);
}

.storage-card.highlight span {
  color: #fff;
}

/* HOVER */
.storage-card:hover {
  transform: translateY(-6px);
}

/* CARD TEXT FIX */
.card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.card-info p {
  margin: 0;
  font-size: 15px;
  opacity: 0.7;
}

.card-info h5 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary-color);
}

.card-info h5 span {
  font-size: 14px;
  font-weight: 500;
  color: #888;
}

/* ORANGE CARD TEXT */
.storage-card.highlight .card-info h5,
.storage-card.highlight .card-info h5 span {
  color: #fff;
}

/*------------------ home-v2:about SECTION -------------------*/
/* ABOUT SAAS */
.h2-about-us {
  padding: 100px 0;
  background: #ffffff;
}

/* IMAGE */
.h2-about-img-wrap img {
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* TAG */
.h2-about-tag {
  color: var(--secondary-color);
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 12px;
}

/* TITLE */
.h2-about-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 18px;
}


/* TEXT */
.h2-about-text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* FEATURES */
.h2-about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 25px;
}

.h2-about-features div {
  font-size: 15px;
  color: var(--primary-color);
  font-weight: 500;
}

.h2-about-features i {
  color: var(--secondary-color);
  margin-right: 6px;
}

/* BUTTON */
.h2-about-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.h2-about-btn:hover {
  background: var(--secondary-color);
  color: #fff;
}

/*------------------ Stats SECTION -------------------*/

.ss-stats {
  background: #f4f6f9;
  padding: 20px 0;
}

.stat-box {
  transition: 0.3s;
}

.stat-icon {
  font-size: 32px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.stat-box h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0B2D4F;
  margin-bottom: 8px;
}

.stat-box p {
  color: #666;
  font-size: 16px;
}

/* hover */
.stat-box:hover {
  transform: translateY(-6px);
}


/*---- Why choose ---------------------------*/

/* ABOUT DARK SECTION */
.why-choose-dark {
  background: linear-gradient(120deg, #0B2D4F, #081c33);
  padding-top: 20px;
  position: relative;
  height: auto;
}

.why-choose-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-choose-title span {
  color: var(--secondary-color);
}

.why-choose-desc {
  color: #cbd5e1;
  margin-bottom: 35px;
  max-width: 500px;
}

/* FEATURE */
.why-choose-feature {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.why-choose-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(245, 124, 0, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--secondary-color);
}

.why-choose-feature h6 {
  font-weight: 700;
  margin-bottom: 5px;
}

.why-choose-feature p {
  font-size: 14px;
  color: #cbd5e1;
  margin: 0;
}

/* STATS */
.why-choose-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 35px;
}

.why-choose-stats h3 {
  color: var(--secondary-color);
  font-weight: 700;
  margin: 0;
}

.why-choose-stats span {
  font-size: 13px;
  color: #cbd5e1;
}

.why-choose-btn {
  background: var(--secondary-color);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  margin-left: 20px;
}

.why-choose-btn:hover {
  background: #ff8f1f;
  color: #fff;
}

/* IMAGE */
.why-choose-man {
  margin-top: 30px;
  height: auto;
}

/*------------ why choose section end ------------*/

/* -------------- STORAGE TYPES -------------------*/
.storage-types {
  padding: 90px 0;
  background: #f6f8fb;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--primary-color);
}

.section-sub {
  color: #666;
}

/* CARD */
.storage-card-type {
  background: #fff;
  padding: 40px 25px;
  border-radius: 18px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: 0.35s;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.storage-card-type:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* ICON */
.icon-circle {
  width: 90px;
  height: 90px;
  background: #eef3f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 34px;
  color: var(--secondary-color);
  transition: 0.3s;
}

.storage-card-type:hover .icon-circle {
  background: var(--primary-color);
  color: #fff;
}

/* TEXT */
.storage-card-type h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.storage-card-type p {
  font-size: 15px;
  color: #666;
  margin-bottom: 25px;
}

/* BUTTON PERFECT ALIGN */
.storage-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  /* IMPORTANT ALIGN FIX */
  display: inline-block;
  transition: 0.3s;
}

.storage-btn:hover {
  background: var(--secondary-color);
  color: #fff;
}

/*-------------- STORAGE TYPES END ------------------*/


/*---------------- HOW IT WORKS --------------*/
.how-works {
  background: #fff;
}

.work-card {
  background: var(--light);
  padding: 40px 25px;
  border-radius: 18px;
  transition: 0.35s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.work-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* ICON */
.work-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: auto;
  transition: 0.3s;
}

.work-card:hover .work-icon {
  background: var(--secondary-color);
}

/* TEXT */
.work-card p {
  font-size: 15px;
  color: #6c757d;
}

/* =====================================
        h2- MOBILE RESPONSIVE
===================================== */
@media (max-width: 576px) {

  /* HERO */
  .hero-v2 {
    height: auto;
    padding: 120px 15px 70px;
    text-align: center;
  }

  .hero-content-v2 h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-search {
    max-width: 100%;
  }

  .hero-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  /* HERO RIGHT CARDS */
  .hero-cards {
    margin-top: 40px;
    align-items: center;
  }

  .storage-card {
    width: 100%;
  }

  .storage-card.highlight {
    transform: none;
  }

  /* ABOUT */
  .h2-about-us {
    padding: 70px 0;
    text-align: center;
  }

  .h2-about-title {
    font-size: 28px;
  }

  .h2-about-features {
    justify-content: center;
  }

  /* STATS */
  .ss-stats {
    padding: 50px 0;
  }

  .stat-box {
    margin-bottom: 25px;
  }

  /* WHY CHOOSE */
  .why-choose-dark {
    height: auto;
    padding: 70px 20px;
    text-align: center;
  }

  .why-choose-title {
    font-size: 30px;
  }

  .why-choose-desc {
    margin: auto;
  }

  .why-choose-feature {
    justify-content: center;
    text-align: left;
    margin-top: 30px;
  }

  .why-choose-stats {
    flex-direction: column;
    gap: 15px;
  }

  .why-choose-btn {
    margin-left: 0;
  }

  .why-choose-man {
    align-items: end;
    height: auto;
  }

  /* STORAGE TYPES */
  .section-title {
    font-size: 26px;
  }

  .storage-types {
    padding: 70px 0;
  }

  /* HOW WORKS */
  .work-card {
    padding: 30px 20px;
  }

}

/* =====================================
       h2-TABLET RESPONSIVE
===================================== */
@media (min-width:577px) and (max-width:991px) {

  /* HERO */
  .hero-v2 {
    height: auto;
    padding: 120px 0 80px;
  }

  .hero-content-v2 h1 {
    font-size: 36px;
  }

  .hero-cards {
    margin-top: 50px;
    align-items: center;
  }


  /* ABOUT */
  .h2-about-title {
    font-size: 34px;
  }

  /* WHY CHOOSE */
  .why-choose-dark {
    height: auto;
    padding: 80px 0;
    text-align: center;
  }

  .why-choose-title {
    font-size: 36px;
  }

  .why-choose-desc {
    margin: auto;
  }

  .why-choose-feature {
    justify-content: center;
    text-align: left;
    margin-top: 30px;
  }

  .why-choose-stats {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }

  .why-choose-man {
    height: auto;
    margin-top: 40px;
  }

  /* STATS */
  .ss-stats {
    padding: 60px 0;
  }

  /* STORAGE TYPES */
  .section-title {
    font-size: 32px;
  }

  /* HOW WORKS */
  .work-card {
    height: 100%;
  }

}

/* EXTRA SMALL DEVICES (320px) */
@media (max-width:380px) {

  .hero-search {
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: transparent;
    gap: 10px;
  }

  .hero-search input {
    width: 100%;
    border-radius: 30px;
    padding: 14px 18px;
  }

  .hero-search button {
    width: 100%;
    border-radius: 30px;
    padding: 12px;
  }

}

/* ===============================
   TABLET FIX (768px)
   =============================== */

@media (max-width: 991px) {

  .hero-v2 {
    height: auto;
    padding: 120px 0 60px;
    text-align: center;
  }

  /* center left content */
  .hero-content-v2 {
    max-width: 600px;
    margin: auto;
  }

  /* search center */
  .hero-search {
    margin: 25px auto;
  }

  /* feature icons center */
  .hero-features {
    justify-content: center;
  }

  /* RIGHT CARDS */
  .hero-cards {
    margin-top: 40px;
    align-items: center;
  }
}

/* ===============================
   TABLET 768px CARD HORIZONTAL
   =============================== */
@media (min-width:768px) and (max-width:991px) {

  .hero-cards {
    flex-direction: row;
    /* horizontal */
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-left: 0;
    margin-top: 40px;
    flex-wrap: nowrap;
    /* keep in one row */
  }

  .storage-card {
    width: 220px;
    padding: 18px;
    text-align: center;
  }

  .storage-card h4 {
    font-size: 18px;
  }

  .card-info {
    flex-direction: column;
    gap: 5px;
  }

  /* remove desktop shift */
  .storage-card.highlight {
    transform: none;
  }

  .storage-types .row {
    justify-content: center;
    /* center cards */
  }

  .storage-types .col-md-6 {
    display: flex;
    justify-content: center;
  }

  .storage-card-type {
    width: 100%;
    max-width: 340px;
  }

}

/* ===============================
   INNER HERO (Reusable)
================================ */

.inner-hero {
  position: relative;
  min-height: 65vh;
  height: auto;
  display: flex;
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
  text-align: center;
  /* text center */
  background: var(--hero-bg) center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

/* overlay */
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* CENTER CONTENT PERFECT */
.inner-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* horizontal center */
  justify-content: center;
  /* vertical center */
}

/* tag */
.inner-hero-tag {
  color: var(--secondary-color);
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* title */
.inner-hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

/* ============================================
   INNER HERO (Reusable) MOBILE RESPONSIVE
================================================ */

@media(max-width:768px) {
  .inner-hero {
    min-height: 55vh;
    padding: 60px 15px;
  }

  .inner-hero-title {
    font-size: 24px;
  }

  .desktop-break {
    display: none;
  }
}

/*==============================
           About Page 
  ================================*/

/*mission & Vision Section */

.ss-about-block {
  background: #f4f6f9;
  padding-top: 80px;
  padding-bottom: 120px;
  position: relative;
}

/* subtitle */
.ss-sub {
  color: var(--secondary-color);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
}

/* title */
.ss-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-top: 10px;
}

/* desc */
.ss-desc {
  max-width: 750px;
  margin: 15px auto 20px;
  color: #6b7280;
  font-size: 16px;
}

/* floating box */
.ss-feature-box {
  background: var(--primary-color);
  padding: 35px 20px 35px 20px;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* icon */
.ss-feature-box i {
  font-size: 32px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  display: block;
}

/* text */
.ss-feature-box p {
  margin: 0;
  font-weight: 500;
}

/* bottom white card */
.ss-bottom {
  background: #fff;
  padding: 90px 40px 50px;
  border-radius: 25px;
  margin-top: -60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* headings */
.ss-bottom h5 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.ss-bottom h5 i {
  color: var(--secondary-color);
  margin-right: 8px;
}

.ss-bottom p {
  color: #6b7280;
  font-size: 15px;
}

/*---- mission & Vision Section MOBILE RESPONSIVE -----*/

@media(max-width:576px) {

  .ss-title {
    font-size: 26px;
  }

  .ss-feature-box {
    padding: 25px 15px;
  }

  .ss-bottom {
    padding: 80px 20px 40px;
  }
}

/* ------- SECURESTORE HISTORY SECTION ------*/

.ss-history {
  background: var(--primary-color);
  color: #fff;
  overflow: hidden;
}

/* LEFT */
.ss-history-content {
  padding: 90px 70px;
  background: var(--primary-color);
}

.ss-history-tag {
  color: var(--secondary-color);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.ss-history-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
}

.ss-history-content p {
  color: #e5e7eb;
  font-size: 15px;
  line-height: 1.8;
  max-width: 520px;
}

/* TIMELINE */
.ss-timeline {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  position: relative;
}

.ss-timeline::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.ss-timeline div {
  text-align: center;
  position: relative;
  z-index: 1;
}

.ss-timeline span {
  display: inline-block;
  background: var(--secondary-color);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 6px;
}

.ss-timeline p {
  font-size: 13px;
  color: #d1d5db;
  margin: 0;
}

/* RIGHT IMAGE */
.ss-history-image {
  position: relative;
  background: url("../img/Secure Store.png") center/cover no-repeat;
}

.ss-history-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(11, 45, 79, 0.85),
      rgba(11, 45, 79, 0.35),
      rgba(11, 45, 79, 0.05));
}

/* ------- SECURESTORE HISTORY SECTIO RESPONSIVE ----*/

@media(max-width:991px) {

  .ss-history-content {
    padding: 70px 30px;
  }

  .ss-history-title {
    font-size: 34px;
  }

  .ss-timeline {
    flex-wrap: wrap;
    gap: 20px;
  }

  .ss-history-image {
    min-height: 350px;
  }

  .ss-history-overlay {
    background: linear-gradient(to bottom,
        rgba(11, 45, 79, 0.55),
        rgba(11, 45, 79, 0.35),
        rgba(11, 45, 79, 0.05));
  }
}

@media(max-width:576px) {

  .ss-history-title {
    font-size: 28px;
  }

  .ss-history-content p {
    font-size: 14px;
  }

  .ss-timeline {
    justify-content: center;
  }

  .ss-history-overlay {
    background: none;
  }

  .ss-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
    padding-left: 25px;
  }

  /* vertical line */
  .ss-timeline::before {
    top: 0;
    bottom: 0;
    left: 18px;
    width: 2px;
    height: 100%;
  }

  .ss-timeline div {
    text-align: left;
    padding-left: 20px;
  }

  .ss-timeline span {
    margin-bottom: 5px;
  }
}

/*-----------SECURESTORE TESTIMONIALS -----------*/
.ss-testimonial {
  padding: 90px 0;
  background: #f6f8fb;
}

.ss-subtitle {
  color: var(--secondary-color);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
}

.ss-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 8px;
}

/* CARD */
.ss-testimonial-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 18px;
  height: 100%;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: 0.35s ease;
  border: 1px solid rgba(11, 45, 79, 0.06);
}

/* Quote icon */
.ss-testimonial-card::before {
  content: "“";
  font-size: 60px;
  position: absolute;
  top: 15px;
  left: 20px;
  color: var(--secondary-color);
  opacity: 0.15;
  font-family: serif;
}

/* Hover */
.ss-testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(11, 45, 79, 0.18);
  background: var(--primary-color);
  color: #fff;
}

.ss-testimonial-card:hover p {
  color: #e5e7eb;
}

.ss-testimonial-card:hover .ss-user h6 {
  color: var(--secondary-color);
}

/* TEXT */
.ss-testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

/* USER */
.ss-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ss-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary-color);
}

.ss-user h6 {
  margin: 0;
  font-weight: 600;
  color: var(--primary-color);
}

.ss-testimonial-card.active h6 {
  color: #fff;
}

.ss-user span {
  font-size: 13px;
  color: #777;
}

.ss-testimonial-card.active span {
  color: #cbd5e1;
}

/* MOBILE */
@media(max-width:576px) {
  .ss-title {
    font-size: 26px;
  }
}

/*---------------- TEAM SECTION ----------------*/
.team-securestore {
  padding: 10px 0 50px 0;
  background: #f6f8fb;
}

.team-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--primary-color);
}

.team-sub {
  color: #666;
  max-width: 600px;
  margin: auto;
}

/* CARD */
.team-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* HOVER EFFECT */
.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.team-img {
  width: 120px;
  height: 120px;
  margin: auto;
  margin-bottom: 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--secondary-color);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* INFO */
.team-info h5 {
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.team-info span {
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 600;
}

/* SOCIAL */
.team-social {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  background: var(--primary-color);
  padding: 12px;
  transition: 0.4s;
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-social i {
  color: #fff;
  margin: 0 8px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.team-social i:hover {
  color: var(--secondary-color);
}

/*================================
          Service page 
  =================================*/

.services-section {
  background: #f4f7fb;
}

/* heading */
.small-title {
  color: var(--secondary-color);
  letter-spacing: 2px;
  font-weight: 600;
}

.main-title {
  font-weight: 700;
  color: var(--primary-color);
}


/* card */
.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  position: relative;
}

/* image zoom */
.service-img {
  overflow: hidden;
}

.service-img img {
  height: 250px;
  width: 100%;
  transition: 0.6s;
}

/* hover */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover img {
  transform: scale(1.1);
}

/* text */
.service-card h5 {
  font-weight: 700;
  color: var(--primary-color);
}


.service-card p {
  font-size: 14px;
  color: #555;
}

/* read more */
.read-btn {
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 600;
  transition: 0.3s;
}

.read-btn:hover {
  letter-spacing: 1px;
  color: var(--secondary-color);
}

/*----------- Service page Resposive -----------*/

@media(max-width:576px) {
  .service-img img {
    height: auto;
  }
}

@media (max-width: 991px) and (min-width: 768px) {

  .services-section .row {
    justify-content: center !important;
  }

  .service-img img {
    height: 200px;
  }
}

/*============================ 
        Services details Page 
  =================================*/

.service-details {
  background: linear-gradient(135deg, #0B2D4F, #081F36);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* title */
.service-details-title {
  font-weight: 800;
  font-size: 42px;
  line-height: 1.2;
}

/* text */
.service-details-text {
  font-size: 16px;
  color: #dce3ea;
  margin-top: 15px;
}

/* button */
.btn-storage {
  background: #F57C00;
  color: #fff;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-storage:hover {
  background: #ff8c1a;
  color: #fff;
  transform: translateY(-2px);
}

/* image wrapper */
.service-details-image-wrapper {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.service-details-image-wrapper img {
  border-radius: 18px;
}

/* responsive */
@media(max-width:991px) {
  .service-details-title {
    font-size: 34px;
  }
}

/* service details cards */

.service-details-storage-need-section {
  background: #f4f7fb;
}

/* heading */
.service-details-section-title {
  font-weight: 800;
  color: #0B2D4F;
}

.service-details-section-text {
  max-width: 700px;
  color: #555;
}

.scroll-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 15px;
}

.scroll-arrows button {
  width: 45px;
  height: 45px;
  border: none;
  background: #0B2D4F;
  color: #fff;
  font-size: 22px;
  border-radius: 8px;
  transition: .3s;
}

.scroll-arrows button:hover {
  background: #F57C00;
}


/* scroll container */
.service-details-scroll-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  padding-bottom: 15px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

/* hide scrollbar (optional) */
.service-details-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}

.service-details-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #F57C00;
  border-radius: 10px;
}

/* cards */
.service-details-storage-card {
  min-width: 320px;
  /* important */
  max-width: 320px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
  transition: 0.3s;
}

.service-details-storage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* icon */
.service-details-storage-card i {
  color: var(--secondary-color);
  font-size: 40px;
  margin-bottom: 15px;
}

/* text */
.service-details-storage-card h5 {
  font-weight: 700;
  color: #0B2D4F;
}

.service-details-storage-card p {
  font-size: 14px;
  color: #555;
}

/*----------- Pricing ----------*/

.unit-section {
  background: #f4f7fb;
}

.unit-title {
  font-weight: 800;
  color: #0B2D4F;
}

/* tabs */
.unit-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.unit-btn {
  padding: 12px 28px;
  border-radius: 30px;
  border: 2px solid #e2e2e2;
  background: #fff;
  font-weight: 700;
  transition: .3s;
}

.unit-btn.active {
  border-color: #F57C00;
  background: #fff3e6;
  color: #F57C00;
  box-shadow: 0 5px 20px rgba(245, 124, 0, .3);
}

.unit-btn:hover {
  border-color: #F57C00;
}

/* info box */
.unit-info-box {
  background: #e9eef5;
  border-radius: 16px;
  padding: 40px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

/* content animation */
.unit-content {
  display: none;
  animation: fade .5s ease;
}

.unit-content.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* illustration */
.unit-img {
  width: 90px;
  margin-bottom: 15px;
}

/* price glow */
.price {
  font-size: 32px;
  font-weight: 800;
  color: #0B2D4F;
  text-shadow: 0 0 15px rgba(245, 124, 0, .4);
}

/* button */
.book-btn {
  background: #F57C00;
  color: #fff;
  border: none;
  padding: 14px 35px;
  border-radius: 8px;
  margin-top: 15px;
  font-weight: 700;
  transition: .3s;
}

.book-btn:hover {
  background: #ff8c1a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
}


@media (max-width:767px) {

  /* make parent relative */
  .service-details-storage-need-section {
    position: relative;
  }

  /* move arrows below cards */
  .scroll-arrows {
    order: 2;
    margin-top: 20px;
    justify-content: center !important;
  }

  /* cards first */
  .service-details-scroll-wrapper {
    order: 1;
  }

  /* stack properly */
  .service-details-storage-need-section .container {
    display: flex;
    flex-direction: column;
  }

  .scroll-arrows {
    justify-content: center !important;
    margin-top: 15px;
  }

  .highlite1 {
    color: white;
  }

}

/*-------FAQ ---------*/

.ss-faq {
  background: var(--light-bg);
}

/* title */
.faq-title {
  font-weight: 800;
  font-size: 38px;
  color: var(--primary-color);
}

.faq-sub {
  color: #666;
}

/* accordion */
.ss-accordion .accordion-item {
  margin: auto;
  max-width: 750px;
  border: none;
  border-radius: 14px;
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: .3s;
}

/* hover effect */
.ss-accordion .accordion-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* question */
.ss-accordion .accordion-button {
  background: #fff;
  font-weight: 600;
  color: #0B2D4F;
  padding: 20px;
  box-shadow: none;
}

/* active question */
.ss-accordion .accordion-button:not(.collapsed) {
  background: #0B2D4F;
  color: #fff;
}

/* answer */
.ss-accordion .accordion-body {
  background: #fff;
  color: #555;
  padding: 20px;
}

/* remove default arrow */
.accordion-button:focus {
  box-shadow: none;
}

/*==================================
              Blog page
    ==================================*/
body {
  background: var(--light-bg);
  font-family: 'Inter', sans-serif;
}

.blog-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color);
}

.blog-count {
  color: #6b7280;
}

.filter-toggle {
  border: 1px solid #ccc;
  background: #fff;
  padding: 10px 18px;
  border-radius: 10px;
}

/* FILTER DROPDOWN */
.filter-dropdown {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 25px;
  display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  animation: slideDown .4s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-bar {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: 1px solid #ddd;
  outline: none;
}

.cat-heading {
  color: #6b7280;
  font-weight: 600;
}

.cat-item {
  padding: 12px 15px;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 8px;
  transition: 0.3s;
}

.cat-item:hover {
  background: #eef2f7;
}

.cat-item.active {
  background: var(--primary-color);
  color: #fff;
}

/* BLOG CARD */
.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: .4s;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: .5s;
}

.blog-info {
  padding: 18px;
}

.blog-info span {
  font-size: 12px;
  background: #eef2ff;
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 20px;
}

/* hover */
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.blog-card:hover img {
  transform: scale(1.08);
}

.date {
  font-size: 14px;
  color: var(--primary-color);
}

/*===================
          blog details
      =====================*/
.blog-details-sec {
  padding: 70px 0;
  background: #f5f7fa;
}

/* heading */
.blog-main-heading {
  font-size: 42px;
  font-weight: 700;
  color: #0B2D4F;
  line-height: 1.3;
  max-width: 850px;
  margin-bottom: 10px;
}

/* date */
.blog-date {
  color: #94a3b8;
  font-size: 15px;
  margin-bottom: 25px;
}

/* image */
.blog-main-img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 35px;
}

/* content */
.blog-text {
margin:0 auto;
}

.blog-text p {
  font-size: 17px;
  line-height: 1.9;
  color: #374151;
  margin-bottom: 22px;
  text-align: justify;
}

/* sub heading */
.blog-text h3 {
  font-size: 26px;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #0B2D4F;
}

/* mobile */
@media(max-width:768px) {

  .blog-main-heading {
    font-size: 28px;
  }

  .blog-text p {
    font-size: 16px;
  }

  .blog-text h3 {
    font-size: 22px;
  }

}
/*------------- related blog ------------*/
.related-blog{
  background:#f5f7fa;
  }
  
  .related-title{
  font-size:26px;
  font-weight:700;
  color:#0B2D4F;
  }
  
  .view-all{
  color:#0B2D4F;
  font-weight:600;
  text-decoration:none;
  font-size:14px;
  }
  
  /* card */
  .related-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  transition:0.4s;
  position:relative;
  }
  
  .related-img{
  width:100%;
  height:200px;
  object-fit:cover;
  transition:0.5s;
  }
  
  .related-content{
  padding:18px;
  position:relative;
  }
  
  .tags span{
  background:#eef2ff;
  color:#0B2D4F;
  padding:5px 12px;
  border-radius:20px;
  font-size:12px;
  margin-right:6px;
  }
  
  .related-content h5{
  margin-top:12px;
  font-size:18px;
  font-weight:600;
  color:#0B2D4F;
  }
  
  /* arrow */
  .arrow{
  position:absolute;
  right:18px;
  bottom:18px;
  width:35px;
  height:35px;
  border-radius:50%;
  border:1px solid #ddd;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  }
  
  /* hover 🔥 */
  .related-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
  }
  
  .related-card:hover .related-img{
  transform:scale(1.08);
  }
  
  .related-card:hover .arrow{
  background:#F57C00;
  color:#fff;
  border:none;
  }
  
  /* mobile */
  @media(max-width:768px){
  .related-img{
  height:180px;
  }
  }
  
  /*==================================
            Contact page
  =====================================*/

  .contact-sec{
    background:var(--light-bg);
    }
    
    /* badge */
    .contact-badge{
    background:#eef2ff;
    color:var(--primary-color);
    padding:6px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    }
    
    /* title */
    .contact-title{
    font-size:38px;
    font-weight:700;
    color:var(--primary-color);
    margin-top:15px;
    }
    
    .contact-sub{
    color:#6b7280;
    margin-top:10px;
    max-width:500px;
    }
    
    /* cards */
    .contact-card{
    background:#fff;
    border-radius:16px;
    padding:20px;
    transition:.3s;
    border:1px solid #eee;
    height:100%;
    }
    
    .contact-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    border-color:var(--secondary-color);
    }
    
    .contact-card .icon{
    font-size:22px;
    margin-bottom:10px;
    }
    
    .contact-card h6{
    font-weight:600;
    color:var(--primary-color);
    }
    
    .contact-card p{
    color:#6b7280;
    font-size:14px;
    }
    
    /* office special */
    .contact-card.office{
    background:linear-gradient(135deg,#0B2D4F,#163b63);
    color:#fff;
    }
    
    .contact-card.office h6,
    .contact-card.office p{
    color:#fff;
    }
    
    /* form */
    .contact-form-box{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    }
    
    .form-title{
    font-weight:700;
    color:var(--primary-color);
    margin-bottom:20px;
    }
    
    .form-input{
    width:100%;
    padding:14px;
    margin-bottom:15px;
    border-radius:10px;
    border:1px solid #ddd;
    outline:none;
    }
    
    .form-input:focus{
    border-color:var(--secondary-color);
    box-shadow:0 0 0 2px rgba(245,124,0,0.15);
    }
    
    .send-btn{
    background:var(--primary-color);
    color:#fff;
    border:none;
    padding:14px 22px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
    }
    
    .send-btn:hover{
    background:var(--secondary-color);
    }
    
    /* mobile */
    @media(max-width:768px){
    .contact-title{
    font-size:28px;
    }
    }

    /*-----------------map-----------*/
    .map-sec{
      background:#f5f7fa;
      }
      
      .map-box{
      position:relative;
      border-radius:24px;
      overflow:hidden;
      box-shadow:0 20px 50px rgba(0,0,0,0.1);
      }
      
      /* map iframe */
      .map-box iframe{
      width:100%;
      height:420px;
      border:0;
      filter:grayscale(0.2);
      }
      
      /* overlay card */
      .map-info{
      position:absolute;
      top:25px;
      left:25px;
      background:#fff;
      padding:18px 22px;
      border-radius:14px;
      box-shadow:0 10px 25px rgba(0,0,0,0.15);
      max-width:260px;
      }
      
      .map-info h5{
      margin:0;
      font-size:18px;
      font-weight:700;
      color:#0B2D4F;
      }
      
      .map-info p{
      margin:6px 0;
      font-size:14px;
      color:#6b7280;
      }
      
      .map-info a{
      color:#F57C00;
      font-weight:600;
      font-size:14px;
      text-decoration:none;
      }
      
      /* mobile */
      @media(max-width:768px){
      .map-box iframe{
      height:300px;
      }
      
      .map-info{
      position:static;
      margin-bottom:15px;
      box-shadow:none;
      }
      }
      