   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

html, body{
  max-width:100%;
  overflow-x:hidden;
  font-family: 'Poppins', sans-serif;
}


/* WhatsApp Icon */
#whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

#whatsapp-icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  padding: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}




/* ========================
   Top Bar
======================== */
/* ========================
   Top Bar FIX
======================== */
.top-bar{
    background:#1f4ea3;
    color:#fff;
    font-size:14px;
    padding:6px 0;
}

/* full width layout */
.top-bar .container{
    max-width:1400px;
    width:95%;
    margin:auto;
}

/* keep everything in one row */
.flex-between{
    display:flex;
    justify-content:space-between;
    align-items:center;
    white-space:nowrap; /* 🔥 prevents wrapping */
}

/* spacing */
.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:18px;
}


/* ========================
   Navbar
======================== */
.navbar{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:40px 0;
}


/* Logo */
.logo img{
    height:48px;
    margin-left: 30px;
}


/* Menu */
.nav-menu{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
}

.nav-menu li a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:0.3s;
}

.nav-menu li a:hover{
    color:#1f4ea3;
}

/* ===== Dropdown Fix ===== */

.dropdown{
    position:relative;
}

/* keep navbar visible for dropdown */
/* Navbar height control */
.navbar{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);

    min-height:90px;   /* 🔥 increase white bar height */
    display:flex;
    align-items:center;
}

/* spacing inside */
.nav-wrapper{
    padding:0;  /* remove old padding */
}

/* submenu */
.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    min-width:230px;
    background:#fff;
    border-radius:10px;

    box-shadow:0 10px 25px rgba(0,0,0,0.12);

    padding:10px 0;

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:all .25s ease;

    z-index:9999;
}

/* items */
.dropdown-menu li{
    list-style:none;
}

.dropdown-menu li a{
    display:block;
    padding:10px 18px;
    color:#333;
    text-decoration:none;
    font-size:14px;
}

.dropdown-menu li a:hover{
    background:#f5f7fb;
    color:#1f4ea3;
}


/* 🔥 SHOW ON HOVER */
.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* ========================
   Button
======================== */
.btn-start{
    background:#ff7a00;
    color:#fff !important;
    padding:10px 20px;
    border-radius:25px;
    font-weight:600;
}

.btn-start:hover{
    background:#e56700;
}


/* ========================
   Hamburger
======================== */
.hamburger{
    display:none;
    font-size:26px;
    cursor:pointer;
    margin-right: 30px;
}


/* ========================
   Mobile Drawer
======================== */
.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:75%;
    height:100vh;
    background:#fff;
    box-shadow:-4px 0 20px rgba(0,0,0,0.1);
    padding:30px;
    display:flex;
    flex-direction:column;
    gap:18px;
    transition:0.4s;
    z-index:999;
}

.mobile-menu a,
.mobile-dropdown button{
    text-decoration:none;
    color:#333;
    font-size:16px;
    background:none;
    border:none;
    text-align:left;
    cursor:pointer;
}

.mobile-menu.active{
    right:0;
}

.close-menu{
    font-size:24px;
    align-self:flex-end;
    cursor:pointer;
}


/* mobile submenu */
.mobile-submenu{
    display:none;
    padding-left:15px;
    display:flex;
    flex-direction:column;
    gap:10px;
}



/* ========================
   Responsive
======================== */
@media(max-width:992px){

    .nav-menu{
        display:none;
    }

    .hamburger{
        display:block;
    }

    /* hide blue bar on mobile */
    .top-bar{
        display:none;
    }
}

/* ===============================
   BV HERO SECTION (SCOPED)
=============================== */

.bv-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 20px;
    background: linear-gradient(120deg, #f5f7fa, #e8eef5, #eef3ff, #f5f7fa);
    background-size: 400% 400%;
    animation: bvGradientFlow 18s ease infinite;
}

@keyframes bvGradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Container */
.bv-hero-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ================= LEFT ================= */

.bv-hero-content {
    opacity: 0;
    animation: bvSlideLeft 0.9s ease forwards 0.3s;
}

@keyframes bvSlideLeft {
    from { opacity: 0; transform: translateX(-80px); }
    to   { opacity: 1; transform: none; }
}

/* Logo card */
.bv-hero-logo-card {
    display: inline-flex;
    gap: 15px;
    background: #fff;
    padding: 20px 28px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 35px;
}

.bv-hero-logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.bv-hero-logo-title {
    font-size: 22px;
    font-weight: 700;
}

.bv-hero-logo-subtitle {
    font-size: 14px;
    color: #ff6b35;
    font-weight: 600;
}

/* Heading */
.bv-hero-heading {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.bv-hero-highlight {
    color: #4285f4;
}

/* Emoji animation */
.bv-hero-emoji {
    display: inline-block;
    font-size: 48px;
    opacity: 0;
    transform-origin: center;
    animation: bvEmojiEnter 1.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 1.2s;
}

@keyframes bvEmojiEnter {
    0%   { opacity: 0; transform: scale(0.3) translateY(20px) rotate(-25deg); }
    60%  { opacity: 1; transform: scale(1.15) translateY(-6px) rotate(6deg); }
    80%  { transform: scale(0.96) translateY(2px) rotate(-2deg); }
    100% { opacity: 1; transform: scale(1) translateY(0) rotate(0); }
}

/* Description */
.bv-hero-description {
    font-size: 18px;
    line-height: 1.7;
    max-width: 560px;
    color: #666;
    margin-bottom: 40px;
}

.bv-hero-text-highlight {
    color: #ff6b35;
    font-weight: 600;
}

/* Buttons */
.bv-hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.bv-btn {
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.bv-btn-primary {
    background: linear-gradient(135deg, #4285f4, #5b98ff);
    color: #fff;
    box-shadow: 0 10px 25px rgba(66,133,244,0.35);
}

.bv-btn-primary:hover {
    transform: translateY(-3px);
}

.bv-btn-secondary {
    background: #fff;
    border: 2px solid #e5e5e5;
    color: #4285f4;
}

.bv-btn-secondary:hover {
    border-color: #4285f4;
}

/* Stats */
.bv-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.bv-stat-card {
    background: #fff;
    padding: 22px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.bv-stat-card:hover {
    transform: translateY(-6px);
}

.bv-stat-number {
    font-size: 28px;
    font-weight: 800;
}

.bv-blue   { color: #4285f4; }
.bv-orange { color: #ff8c42; }
.bv-yellow { color: #ffb900; }
.bv-purple { color: #7c3aed; }

/* ================= RIGHT ================= */

.bv-hero-image {
    opacity: 0;
    animation: bvSlideRight 0.9s ease forwards 0.4s;
}

@keyframes bvSlideRight {
    from { opacity: 0; transform: translateX(80px); }
    to   { opacity: 1; transform: none; }
}

.bv-hero-image-container {
    transition: transform 0.4s ease;
}

.bv-hero-image-wrapper {
    position: relative;
    background: linear-gradient(135deg, #ffe5e0, #e8f4ff, #e0f9f5);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.bv-hero-main-image {
    width: 100%;
    border-radius: 20px;
    animation: bvImageSettle 2.4s ease forwards;
}

@keyframes bvImageSettle {
    from { transform: scale(1.06); }
    to   { transform: scale(1); }
}

.bv-hero-image-wrapper:hover .bv-hero-main-image {
    transform: scale(1.03);
}

/* Glow */
.bv-hero-image-wrapper::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 34px;
    background: linear-gradient(
        120deg,
        rgba(66,133,244,0.3),
        rgba(255,107,53,0.25)
    );
    filter: blur(28px);
    z-index: -1;
}

.bv-hero-badge {
    position: absolute;
    right: 8px;                 /* ⬅ shift left */
    background: #fff;
    padding: 12px 20px;         /* slightly tighter padding */
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    opacity: 0;
}


.bv-badge-creative   { top: 40px;  animation: bvBadgeIn 0.6s ease forwards 1.2s; }
.bv-badge-award      { top: 50%; transform: translateY(-50%); animation: bvBadgeIn 0.6s ease forwards 1.7s; }
.bv-badge-innovative { bottom: 40px; animation: bvBadgeIn 0.6s ease forwards 2.2s; }

@keyframes bvBadgeIn {
    from { opacity: 0; transform: translateX(80px) scale(0.9); }
    to   { opacity: 1; transform: none; }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
    .bv-hero-container {
        grid-template-columns: 1fr;
    }
    .bv-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bv-hero-heading {
        font-size: 38px;
    }
    .bv-hero-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    .bv-hero-heading {
        font-size: 30px;
    }
    .bv-hero-cta {
        flex-direction: column;
    }
    .bv-btn {
        width: 100%;
        justify-content: center;
    }
}


/*section 2*/
/* ================= SERVICES SECTION ================= */
/* SECTION */
/* ===== SERVICES SECTION ===== */

/* ===== SERVICES ===== */

.services-section{
  padding: 90px 20px;
  background:#f6f8fc;
  font-family: "Poppins", sans-serif;
  text-align:center;
}

.services-container{
  max-width:1200px;
  margin:auto;
}

/* grid → 3 cards per row */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-top:50px;
}

/* card */
.service-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  border:2px solid #e5e7eb;   /* BORDER EFFECT */
  transition:0.35s ease;
  text-align:left;
}

/* hover effects */
.service-card:hover{
  transform:scale(1.05);
  border-color:#2563eb;
  box-shadow:0 15px 35px rgba(37,99,235,0.18);
}

.service-card:hover h3,
.service-card:hover p{
  color:#2563eb;
}

/* top image section */
.service-top{
  height:150px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.service-top img{
  width:120px;
  height:120px;
  object-fit:contain;
  transition:0.3s;
}

.service-card:hover .service-top img{
  transform:scale(1.08);
}

/* gradient backgrounds */
.bg-blue{ background:linear-gradient(135deg,#4f8df5,#2563eb); }
.bg-purple{ background:linear-gradient(135deg,#c084fc,#9333ea); }
.bg-green{ background:linear-gradient(135deg,#34d399,#10b981); }
.bg-orange{ background:linear-gradient(135deg,#f59e0b,#ef4444); }
.bg-pink{ background:linear-gradient(135deg,#f472b6,#ec4899); }
.bg-teal{ background:linear-gradient(135deg,#2dd4bf,#14b8a6); }

/* content */
.service-content{
  padding:22px;
}

.service-content h3{
  font-size:19px;
  font-weight:600;
  margin-bottom:10px;
  transition:0.3s;
}

.service-content p{
  font-size:14px;
  color:#6b7280;
  line-height:1.6;
  transition:0.3s;
}

/* ===== RESPONSIVE ===== */

/* tablet */
@media(max-width:992px){
  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* mobile */
@media(max-width:600px){
  .services-grid{
    grid-template-columns:1fr;
  }
}

/* ===== SERVICES HEADER ===== */

.services-section{
  padding: 90px 20px;
  background: #f8fafc;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

/* Badge */
.services-badge{
  display:inline-block;
  background:#eaf1ff;
  color:#2563eb;
  padding:7px 18px;
  font-size:14px;
  font-weight:600;
  border-radius:30px;
  margin-bottom:18px;
  box-shadow:0 3px 8px rgba(37,99,235,0.15);
}

/* Main Title */
.services-title{
  font-size:44px;
  font-weight:700;
  color:#111827;
  margin-bottom:14px;
  line-height:1.2;
}

/* Blue highlighted word */
.services-title span{
  color:#2563eb;
}

/* Subtitle */
.services-subtitle{
  max-width:720px;
  margin:0 auto;
  font-size:16px;
  color:#6b7280;
  line-height:1.7;
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){

  .services-title{
    font-size:32px;
  }

  .services-subtitle{
    font-size:14px;
    padding:0 10px;
  }
}

/* ================= PROCESS SECTION ================= */
/* ================= PROCESS ================= */

.process{
  padding:10px 20px;
  background:#f7f9fc;
  font-family:Poppins,sans-serif;
}

.process-container{
  max-width:1200px;
  margin:auto;
}

/* HEADER */
.process-head{
  text-align:center;
  margin-bottom:70px;
}

.badge{
  background:#eaf1ff;
  color:#2563eb;
  padding:6px 16px;
  border-radius:30px;
  font-weight:600;
  display:inline-block;
  margin-bottom:15px;
}

.process-head h2{
  font-size:42px;
  font-weight:700;
}

.process-head span{
  color:#ff7a00;
}

.process-head p{
  color:#6b7280;
}


/* ===== EXACT LAYOUT ===== */

.process-grid{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:60px;
  align-items:center;
}


/* ROBOT */
.robot img{
  width:100%;
  animation:float 3s ease-in-out infinite;
}

@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-14px)}
}


/* CARDS */
.cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

.card{
  background:#fff;
  padding:28px;
  border-radius:18px;
  border:2px solid #e6e9f2;
  position:relative;
  transition:.35s;
}

/* Hover */
.card:hover{
  transform:scale(1.05);
  box-shadow:0 12px 30px rgba(0,0,0,.12);
}


/* ================= COLORED NUMBERS ================= */

.num{
  position:absolute;
  right:18px;
  top:10px;
  font-size:60px;
  font-weight:800;
  opacity: 0.8;
}

/* pastel colors like screenshot */
.num1{color:#3b82f6;}
.num2{color:#d946ef;}
.num3{color:#fb923c;}
.num4{color:#22c55e;}


/* ================= ANIMATIONS ================= */




/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .process-grid{
    grid-template-columns:1fr;
  }

  .cards{
    grid-template-columns:1fr;
  }

  .robot{
    text-align:center;
    margin-bottom:40px;
  }

  .process-head h2{
    font-size:30px;
  }
}

/* =========================
   SECTION
========================= */

.advantage-section{
  padding:50px 8%;
  background:#f8fbff;
  font-family: 'Poppins', sans-serif;
}

/* heading */
.advantage-header{
  text-align:center;
  margin-bottom:70px;
}

.badge{
  background:#eaf2ff;
  color:#2b6cff;
  padding:6px 18px;
  border-radius:20px;
  font-size:14px;
  display:inline-block;
  margin-bottom:14px;
}

.advantage-header h2{
  font-size:42px;
  font-weight:700;
}

.advantage-header h2 span{
  color:#2b6cff;
}

.advantage-header p{
  margin-top:10px;
  color:#6b7280;
}


/* =========================
   LAYOUT
========================= */

.advantage-wrapper{
  display:grid;
  grid-template-columns: 1fr 400px 1fr;
  gap:40px;
  align-items:center;
}

.adv-col{
  display:flex;
  flex-direction:column;
  gap:25px;
}


/* =========================
   CARDS
========================= */

.adv-card{
  background:#fff;
  padding:20px;
  border-radius:16px;
  display:flex;
  gap:15px;
  align-items:flex-start;
  box-shadow:0 8px 25px rgba(0,0,0,0.06);
  transition:.3s;
  cursor:pointer;
}

/* hover zoom */
.adv-card:hover{
  transform:scale(1.05);
}

.icon{
  width:160px;
  height:60px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  color:#fff;
}

/* icon colors */
.blue{background:#3b82f6;}
.yellow{background:#ffc054;}
.pink{background:#ec4899;}
.green{background:#10b981;}
.purple{background:#8b5cf6;}
.orange{background:#f97316;}


/* =========================
   IMAGE
========================= */

.adv-image{
  text-align:center;   /* center image */
}

.adv-image img{
  width:100%;
  max-width:380px;
  height:auto;
  animation: float 3s ease-in-out infinite;
}

/* =========================
   TABLET
========================= */
@media (max-width:1024px){

  .advantage-wrapper{
    grid-template-columns: 1fr;   /* stack everything */
    gap:40px;
  }

  .adv-col{
    width:100%;
  }

}


/* =========================
   MOBILE
========================= */
@media (max-width:768px){

  .advantage-section{
    padding:50px 20px;
  }

  .advantage-header h2{
    font-size:28px;
  }

  /* cards full width */
  .adv-card{
    padding:18px;
    gap:12px;
  }

  .icon{
    width:48px;
    height:48px;
    font-size:18px;
  }

  .adv-col{
    gap:18px;
  }

}

/* ===== MOBILE ===== */
@media (max-width:768px){

  .adv-image img{
    max-width:100%;   /* full width on mobile */
    width:100%;
  }

}

/* ===== MOBILE ===== */
@media (max-width:768px){

  .adv-image img{
    max-width:100%;   /* full width on mobile */
    width:83%;
  }

}

/* floating animation */
@keyframes float{
  0%{transform:translateY(0);}
  50%{transform:translateY(-15px);}
  100%{transform:translateY(0);}
}


/* =========================
   SCROLL ANIMATION
========================= */


/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

  .advantage-wrapper{
    grid-template-columns:1fr;
    text-align:center;
  }

  .adv-col{
    order:2;
  }

  .adv-image{
    order:1;
    margin-bottom:40px;
  }

  .adv-card{
    text-align:left;
  }
}

/* =========================
   JOIN CTA SECTION
========================= */

.join-section{
  padding:80px 8%;
  background:#f8fbff;
  font-family:'Poppins', sans-serif;
}

/* main blue box */
.join-box{
  max-width:1100px;
  margin:auto;
  text-align:center;

  background:linear-gradient(135deg,#2b6cff,#1e40af);
  color:#fff;

  padding:60px 40px;
  border-radius:22px;

  box-shadow:0 20px 50px rgba(43,108,255,0.25);

  transition:0.4s ease;
}

/* soft hover glow */
.join-box:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 70px rgba(43,108,255,0.35);
}

/* icon */
.join-icon{
  font-size:40px;
  margin-bottom:18px;
}

/* heading */
.join-box h2{
  font-size:32px;
  font-weight:700;
  margin-bottom:10px;
}

/* subtitle */
.join-box p{
  font-size:16px;
  opacity:0.95;
  max-width:700px;
  margin:auto;
  line-height:1.6;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

  .join-box{
    padding:40px 20px;
  }

  .join-box h2{
    font-size:22px;
  }

  .join-box p{
    font-size:14px;
  }

}


/* =======================
   CONTACT SECTION
======================= */
/* =========================
SECTION
========================= */
.contact-section{
  padding:10px 20px;
  font-family:'Poppins',sans-serif;
  background:#f8faff;
}

.contact-container{
  max-width:1200px;
  margin:auto;
}

/* =========================
TITLE
========================= */
.contact-heading{
  text-align:center;
  margin-bottom:60px;
}

.badge{
  background:#e8f0ff;
  padding:6px 16px;
  border-radius:20px;
  font-size:13px;
  display:inline-block;
  margin-bottom:12px;
}

.contact-heading h2{
  font-size:40px;
  font-weight:800;
  margin-bottom:12px;
}

.contact-heading span{
  color:#2d5bff;
}

/* =========================
GRID
========================= */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* =========================
LEFT SIDE
========================= */
.contact-image{
  border-radius:18px;
  overflow:hidden;
  
}

.contact-image img{
  width:90%;
  display:block;
  height: 400px;

}

/* floating effect */
.float-img{
  animation:float 4s ease-in-out infinite;
}

@keyframes float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-15px); }
}

/* cards */
.contact-cards{
  margin-top:25px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.info-card{
  background:#fff;
  padding:18px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 6px 20px rgba(0,0,0,.06);
}

.info-card .icon{
  font-size:22px;
  margin-bottom:6px;
}

/* =========================
FORM
========================= */
.contact-form{
  background:#fff;
  padding:35px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form h3{
  margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px 14px;
  margin-bottom:14px;
  border-radius:8px;
  border:1px solid #e2e8f0;
  font-size:14px;
}

.contact-form textarea{
  height:110px;
  resize:none;
}

.contact-form button{
  width:100%;
  background:#2d5bff;
  color:#fff;
  border:none;
  padding:14px;
  border-radius:10px;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.contact-form button:hover{
  transform:translateY(-2px);
}

/* =========================
ANIMATIONS
========================= */
.reveal-left,
.reveal-right,
.reveal-up{
  opacity:0;
  transition:all .9s ease;
}

.reveal-left{ transform:translateX(-80px); }
.reveal-right{ transform:translateX(80px); }
.reveal-up{ transform:translateY(60px); }

.show{
  opacity:1;
  transform:translate(0);
}

/* =========================
RESPONSIVE
========================= */
@media(max-width:992px){
  .contact-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .contact-cards{
    grid-template-columns:1fr;
  }

  .contact-heading h2{
    font-size:28px;
  }
}

/* =============================
   Footer
============================= */
.bv-footer{
    background:#1f4ea3;
    color:#fff;
    padding-top:60px;
    font-size:14px;
}

/* container */
.footer-container{
    width:90%;
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap:50px;
}

/* logo */
.footer-logo{
    height:90px;
    margin-bottom:18px;
    margin-left: 20px;
}

/* about text */
.footer-about p{
    line-height:1.7;
    margin-bottom:20px;
    opacity:0.9;
}

/* headings */
.footer-col h3{
    margin-bottom:18px;
    font-size:16px;
    font-weight:600;
    position:relative;
}

/* list */
.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:10px;
}

/* links */
.footer-col a{
    color:#fff;
    text-decoration:none;
    opacity:0.9;
    transition:0.3s;
}

.footer-col a:hover{
    opacity:1;
    padding-left:6px;
}

/* social icons */
.social-icons{
    display:flex;
    gap:10px;
}

.social-icons a{
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(255,255,255,0.15);

    display:flex;
    align-items:center;
    justify-content:center;

    transition:0.3s;
}

.social-icons a:hover{
    background:#ff7a00;
}

/* contact icons */
.contact-info i{
    margin-right:8px;
}

/* bottom bar */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.2);
    margin-top:50px;
    padding:20px 5%;

    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
}

.footer-links{
    display:flex;
    gap:20px;
}


/* =============================
   Mobile Responsive
============================= */
@media(max-width:992px){

    .footer-container{
        grid-template-columns: 1fr 1fr;
        gap:40px;
    }
}

@media(max-width:600px){

    .footer-container{
        grid-template-columns: 1fr;
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }
}