:root{
  --navy:#03162d;
  --navy2:#061f3c;
  --gold:#f7a51b;
  --text:#071b39;
  --muted:#5f6b7a;
  --light:#f6f8fb;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#fff;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

.container{
  width:100%;
}

/* =========================================================
   HEADER
========================================================= */


.top-header{
  background:#061d33;
  position:fixed;
  width:100%;
  top:0;
  left:0;
  z-index:1000;
  height:76px;
  display:flex;
  align-items:center;
}

.top-header .container{
  width:100%;
}

/* =========================
   LOGO
========================= */

.logo-box{
  display:flex;
  align-items:center;
}

.logo-box img{
  width:215px;
  max-width:100%;
  height:auto;
  display:block;
}

/* =========================
   DESKTOP NAV
========================= */

.desktop-nav{
  display:flex;
  gap:20px;
  align-items:center;
  justify-content:center;
}

.desktop-nav a{
  color:#fff;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  transition:.3s;
  text-decoration:none;
  white-space:nowrap;
}

.desktop-nav a:hover,
.desktop-nav a.active{
  color:var(--gold);
}

/* =========================
   BUTTON
========================= */

.quote-btn{
  background:var(--gold);
  color:#fff;
  padding:13px 22px;
  font-size:13px;
  font-weight:800;
  border-radius:4px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  transition:.3s;
  text-decoration:none;
  white-space:nowrap;
}

.quote-btn:hover{
  background:#d88b0d;
  color:#fff;
}

/* =========================
   MENU BUTTON
========================= */

.menu-btn{
  border:0;
  background:var(--gold);
  color:#fff;
  width:42px;
  height:42px;
  font-size:22px;
  display:none;
  align-items:center;
  justify-content:center;
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu{
  position:fixed;
  top:0;
  left:-290px;
  width:290px;
  max-width:85%;
  height:100vh;
  background:#061d33;
  z-index:2000;
  padding:25px;
  transition:.35s ease;
  overflow-y:auto;
}

.mobile-menu.active{
  left:0;
}

.mobile-menu a{
  display:block;
  color:#fff;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.1);
  font-weight:700;
  text-decoration:none;
}

.close-menu{
  background:var(--gold);
  color:#fff;
  border:0;
  width:38px;
  height:38px;
  float:right;
  font-size:22px;
  cursor:pointer;
}

/* =========================
   OVERLAY
========================= */

.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  z-index:1500;
  display:none;
}

.overlay.active{
  display:block;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  .desktop-nav{
    display:none;
  }

  .quote-btn{
    display:none;
  }

  .menu-btn{
    display:flex;
  }

  .top-header{
    height:72px;
  }

  .logo-box img{
    width:230px;
  }
}

@media(max-width:576px){

  .top-header{
    height:68px;
  }

  .logo-box img{
    width:230px;
  }

  .menu-btn{
    width:38px;
    height:38px;
    font-size:20px;
  }

  .mobile-menu{
    width:260px;
    padding:20px;
  }

  .mobile-menu a{
    font-size:14px;
  }
}
/* =========================================================
   HERO
========================================================= */

.hero{
  margin-top:76px;
  min-height:500px;
  display:flex;
  align-items:center;
  color:#fff;
}

.breadcrumb-text{
  font-size:13px;
  font-weight:800;
  margin-bottom:18px;
}

.hero h1{
  font-size:60px;
  font-weight:900;
  margin:0;
}

.hero-line{
  width:60px;
  height:4px;
  background:var(--gold);
  margin:18px 0;
}

.hero h3{
  font-size:28px;
  line-height:1.4;
  font-weight:900;
  max-width:680px;
}

.hero h3 span{
  color:var(--gold);
}

.hero p{
  max-width:650px;
  font-size:16px;
  line-height:1.8;
  margin-top:18px;
}

/* =========================================================
   COMMON
========================================================= */

.section{
  padding:90px 0;
}

.label{
  display:inline-block;
  padding:8px 18px;
  background:rgba(193,145,63,.12);
  color:var(--gold);
  border-radius:50px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.8px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.title{
  font-size:32px;
  line-height:1.2;
  font-weight:900;
  color:#071b39;
  margin-bottom:20px;
}

.desc{
  color:#667085;
  font-size:15px;
  line-height:1.9;
}

/* =========================================================
   ABOUT
========================================================= */

/* =========================
   ABOUT SECTION
========================= */

.section{
    padding:100px 0;
    overflow:hidden;
}

.about-collage{
    position:relative;
}

.about-grid{
    position:relative;
}

.about-grid img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.gold-border{
    position:absolute;
    width:220px;
    height:220px;
    border:3px solid #caa35c;
    top:-20px;
    left:-20px;
    z-index:-1;
    border-radius:15px;
}

/* =========================
   CONTENT
========================= */

.label{
    display:inline-block;
    color:#caa35c;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.title{
    font-size:35px;
    font-weight:700;
    line-height:1.2;
    color:#071b39;
    margin-bottom:20px;
}

.desc{
    color:#6b7280;
    line-height:1.9;
    margin-bottom:25px;
}

.check-list{
    list-style:none;
    padding:0;
    margin:0;
}

.check-list li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:5px;
    color:#071b39;
    font-size:16px;
}

.check-list i{
    color:#caa35c;
    font-size:18px;
    margin-top:2px;
}

/* =========================
   STATS CARD
========================= */

.stat-card{
    background:#fff;
    border-radius:16px;
    padding:20px;
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.stat-card:hover{
    transform:translateY(-6px);
}

.stat-card i{
    width:55px;
    height:55px;
    background:#071b39;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.stat-card h3{
    margin:0;
    color:#071b39;
    font-weight:700;
}

.stat-card p{
    margin:0;
    color:#6b7280;
    font-size:14px;
}

/* =========================
   MOBILE
========================= */

@media (max-width:991px){

    .section{
        padding:70px 0;
    }

    .about-grid img{
        height:auto;
    }

    .title{
        font-size:32px;
        margin-top:30px;
    }

    .gold-border{
        display:none;
    }

    .stat-card{
        margin-bottom:15px;
    }
}

@media (max-width:576px){

    .title{
        font-size:28px;
    }

    .check-list li{
        font-size:15px;
    }

    .stat-card{
        padding:15px;
    }
}

.stat-card{
  background:#fff;
  border-radius:14px;
  padding:18px;
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:18px;
  border:1px solid #edf0f4;
  box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.stat-card i{
  width:58px;
  height:58px;
  border-radius:50%;
  background:#f3f6fb;
  display:grid;
  place-items:center;
  font-size:25px;
  color:#071b39;
}

.stat-card h3{
  font-size:18px;
  margin:0;
  font-weight:900;
}

.stat-card p{
  margin:0;
  font-size:13px;
  color:#667085;
}

/* =========================================================
   VALUES
========================================================= */

.values{
  background:linear-gradient(to bottom,#f7f9fc,#eef3f9);
  padding:90px 0;
}

.value-card{
  background:#fff;
  border-radius:24px;
  padding:38px 28px;
  text-align:center;
  height:100%;
  transition:.4s;
  box-shadow:0 10px 40px rgba(0,0,0,.06);
}

.value-card:hover{
  transform:translateY(-10px);
}

.value-card i{
  width:80px;
  height:80px;
  margin:auto auto 20px;
  border-radius:20px;
  display:grid;
  place-items:center;
  font-size:34px;
  background:linear-gradient(135deg,#0b2242,#163761);
  color:#fff;
}

.value-card h5{
  font-size:18px;
  font-weight:800;
  margin-bottom:14px;
}

.value-card p{
  font-size:14px;
  line-height:1.8;
  color:#667085;
}

/* =========================================================
   HISTORY
========================================================= */

.history{
  padding:90px 0;
}

.history-left{
  position:sticky;
  top:100px;
  padding-right:40px;
}

.timeline{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:25px;
  position:relative;
}

.timeline::before{
  content:"";
  position:absolute;
  top:42px;
  left:5%;
  right:5%;
  border-top:2px dashed rgba(193,145,63,.35);
}

.time-item{
  position:relative;
  text-align:center;
  z-index:2;
}

.time-icon{
  width:84px;
  height:84px;
  margin:0 auto 18px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:32px;
  background:#fff;
  color:var(--gold);
  border:3px solid rgba(193,145,63,.2);
  box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.time-item h4{
  font-size:22px;
  font-weight:900;
  color:var(--gold);
}

.time-item h6{
  font-size:15px;
  font-weight:800;
  margin:10px 0;
}

.time-item p{
  font-size:13px;
  line-height:1.8;
  color:#667085;
}

/* =========================================================
   CAPABILITIES
========================================================= */

.capabilities{
  padding:95px 0;
  background:
  linear-gradient(rgba(3,18,36,.95),rgba(3,18,36,.96)),
  url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1800&q=80");

  background-size:cover;
  background-position:center;
}

.capabilities .title,
.capabilities .desc{
  color:#fff;
}

.cap-card{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  min-height:280px;
  background:#0d2747;
  display:flex;
  align-items:flex-end;
  transition:.4s;
  box-shadow:0 15px 45px rgba(0,0,0,.25);
}

.cap-card:hover{
  transform:translateY(-10px);
}

.cap-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(4,15,31,.96),
    rgba(4,15,31,.4)
  );
}

.cap-content{
  position:relative;
  z-index:2;
  padding:30px 24px;
}

.cap-content i{
  width:65px;
  height:65px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:rgba(255,255,255,.12);
  color:#f7a51b;
  font-size:28px;
  margin-bottom:18px;
}

.cap-content h5{
  font-size:20px;
  color:#fff;
  font-weight:800;
  margin-bottom:10px;
}

.cap-content p{
  color:#dbe5f0;
  font-size:13px;
  line-height:1.8;
}

/* =========================================================
   CUSTOMERS
========================================================= */

.customers{
  background:#f8fafc;
  padding:90px 0;
}

.customer-logo{
  height:130px;
  border-radius:24px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  transition:.4s;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.customer-logo:hover{
  transform:translateY(-8px);
}

.customer-logo img{
  max-height:60px;
  object-fit:contain;
}

/* =========================================================
   CTA
========================================================= */

.cta{
  background:
  linear-gradient(90deg,#061b35 0%,#082d56 70%,rgba(8,45,86,.88) 100%),
  url("https://images.unsplash.com/photo-1605274280925-9dd1baacb4d3?auto=format&fit=crop&w=1200&q=80");

  background-size:cover;
  background-position:center;
  color:#fff;
  padding:15px 0;
}

.cta h2{
  font-size:34px;
  font-weight:900;
  margin-bottom:10px;
}

.cta p{
  color:var(--gold);
}

/* =========================================================
   FOOTER
========================================================= */

/* =========================
   FOOTER
========================= */

footer{
  background:#031326;
  color:#d5deea;
  padding:50px 0 20px;
  overflow:hidden;
}

footer .brand img{
  width:180px;
  max-width:100%;
  height:auto;
  display:block;
}

/* =========================
   HEADINGS
========================= */

footer h6{
  color:#fff;
  font-weight:700;
  margin-bottom:18px;
  font-size:16px;
  letter-spacing:.5px;
}

/* =========================
   TEXT
========================= */

footer p{
  font-size:14px;
  line-height:1.8;
  margin-bottom:12px;
  word-break:break-word;
}

/* =========================
   LINKS
========================= */

footer a{
  display:block;
  color:#d5deea;
  font-size:14px;
  text-decoration:none;
  transition:.3s;
  word-break:break-word;
}
.menu-a{
  margin-bottom: 10px;
}


footer a:hover{
  color:var(--gold);
}

/* =========================
   SOCIAL ICONS
========================= */

.socials{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}

.socials a{
  width:38px;
  height:38px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0;
  font-size:14px;
  transition:.3s;
}

.socials a:hover{
  background:var(--gold);
  border-color:var(--gold);
  color:#fff;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  margin-top:35px;
  padding-top:18px;
  font-size:13px;
  gap:12px;
}

.footer-bottom p{
  margin:0;
  color:#d5deea;
  line-height:1.7;
}

.footer-bottom .developer-text{
  display:flex;
  align-items:center;
  gap:5px;
  flex-wrap:wrap;
  justify-content:center;
}

.seyfert{
  color:var(--gold);
  text-decoration:none;
  font-weight:600;
  transition:.3s ease;
}

.seyfert:hover{
  color:#fff;
}

/* =========================
   TABLET
========================= */

@media(max-width:767px){

  .footer-bottom{
    text-align:center;
    padding-top:16px;
  }

  .footer-bottom .developer-text{
    justify-content:center;
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:576px){

  .footer-bottom{
    font-size:12px;
    gap:8px;
  }

  .footer-bottom p{
    line-height:1.6;
  }
}
/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  footer{
    padding:45px 0 18px;
  }

  footer .row > div{
    margin-bottom:25px;
  }

  footer h6{
    margin-bottom:14px;
  }

  .footer-bottom{
    text-align:center;
  }
}

@media(max-width:767px){

  footer{
    text-align:center;
  }

  footer .brand img{
    margin:auto;
    width:160px;
  }

  .socials{
    justify-content:center;
  }

  footer p br{
    display:none;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:center;
    justify-content:center;
  }
}

@media(max-width:576px){

  footer{
    padding:40px 0 15px;
  }

  footer h6{
    font-size:15px;
  }

  footer p,
  footer a{
    font-size:13px;
    line-height:1.7;
  }

  .socials a{
    width:34px;
    height:34px;
    font-size:13px;
  }

  .footer-bottom{
    font-size:12px;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  footer{
    padding:45px 0 18px;
  }

  footer .row > div{
    margin-bottom:25px;
  }

  footer h6{
    margin-bottom:14px;
  }

  .footer-bottom{
    text-align:center;
  }
}

@media(max-width:767px){

  footer{
    text-align:center;
  }

  footer .brand img{
    margin:auto;
    width:160px;
  }

  .socials{
    justify-content:center;
  }

  footer p br{
    display:none;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:center;
    justify-content:center;
  }
}

@media(max-width:576px){

  footer{
    padding:40px 0 15px;
  }

  footer h6{
    font-size:15px;
  }

  footer p,
  footer a{
    font-size:13px;
    line-height:1.7;
  }

  .socials a{
    width:34px;
    height:34px;
    font-size:13px;
  }

  .footer-bottom{
    font-size:12px;
  }
}

/* =========================================================
   LAPTOP
========================================================= */

@media(max-width:1200px){

  .hero h1{
    font-size:52px;
  }

  .hero h3{
    font-size:24px;
  }

  .timeline{
    grid-template-columns:repeat(3,1fr);
  }

  .timeline::before{
    display:none;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:991px){

  .desktop-nav,
  .top-header .quote-btn{
    display:none;
  }

  .menu-btn{
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .top-header{
    height:70px;
  }

  .hero{
    margin-top:70px;
    min-height:auto;
    padding:90px 0 70px;
    text-align:center;
  }

  .hero-line{
    margin:auto;
    margin-block:18px;
  }

  .hero h1{
    font-size:44px;
  }

  .hero h3{
    font-size:22px;
  }

  .hero p{
    margin:auto;
  }

  .section,
  .values,
  .history,
  .customers,
  .capabilities{
    padding:75px 0;
  }

  .title{
    font-size:32px;
  }

  .about-grid{
    grid-template-columns:1fr;
  }

  .about-grid .big,
  .about-grid .side{
    height:auto;
    margin-top:0;
  }

  .gold-border{
    display:none;
  }

  .history-left{
    position:relative;
    top:0;
    padding-right:0;
    margin-bottom:40px;
  }

  .timeline{
    grid-template-columns:repeat(2,1fr);
  }

  .cap-card{
    min-height:240px;
  }

  footer{
    text-align:center;
  }

  .socials{
    justify-content:center;
  }

  .cta{
    text-align:center;
  }

  .cta .d-flex{
    flex-direction:column !important;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:767px){

  .container{
    padding-inline:18px;
  }

  .hero{
    padding:70px 0 50px;
  }

  .hero h1{
    font-size:34px;
  }

  .hero h3{
    font-size:19px;
  }

  .hero p{
    font-size:14px;
  }

  .title{
    font-size:28px;
  }

  .desc{
    font-size:14px;
  }

  .section,
  .values,
  .history,
  .customers,
  .capabilities{
    padding:60px 0;
  }

  .about-grid .big{
    height:260px;
  }

  .about-grid .side{
    height:220px;
  }

  .timeline{
    grid-template-columns:1fr;
    gap:20px;
  }

  .time-item{
    display:flex;
    align-items:flex-start;
    text-align:left;
    gap:16px;
  }

  .time-icon{
    width:65px;
    height:65px;
    min-width:65px;
    font-size:26px;
    margin:0;
  }

  .value-card{
    padding:28px 20px;
  }

  .cap-card{
    min-height:220px;
  }

  .customer-logo{
    height:100px;
  }

  .cta h2{
    font-size:24px;
  }

  .quote-btn{
    width:100%;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:480px){

  .hero h1{
    font-size:28px;
  }

  .hero h3{
    font-size:17px;
  }

  .title{
    font-size:24px;
  }

  .about-grid .big{
    height:220px;
  }

  .about-grid .side{
    height:180px;
  }

  .time-item{
    flex-direction:column;
  }

  .cap-content{
    padding:22px 18px;
  }

  .cap-content h5{
    font-size:17px;
  }

  .customer-logo{
    height:90px;
  }

  .cta h2{
    font-size:21px;
  }
}
/* Common Floating Button Style */
.whatsapp-float,
.call-float{
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: all 0.3s ease;
}

/* WhatsApp Button - Right Side */
.whatsapp-float{
  right: 25px;
  bottom: 25px;
  background: #25D366;
}

.whatsapp-float:hover{
  background: #1ebe5d;
  color: #fff;
  transform: scale(1.08);
}

/* Call Button - Left Side */
.call-float{
  left: 25px;
  bottom: 25px;
  background: #0d6efd;
}

.call-float:hover{
  background: #0b5ed7;
  color: #fff;
  transform: scale(1.08);
}

/* Mobile Responsive */
@media (max-width: 768px){
  .whatsapp-float,
  .call-float{
    width: 52px;
    height: 52px;
    font-size: 24px;
    bottom: 18px;
  }

  .whatsapp-float{
    right: 18px;
  }

  .call-float{
    left: 18px;
  }
}

@media (max-width: 480px){
  .whatsapp-float,
  .call-float{
    width: 48px;
    height: 48px;
    font-size: 22px;
    bottom: 15px;
  }

  .whatsapp-float{
    right: 15px;
  }

  .call-float{
    left: 15px;
  }
}
.gallery-section{
      padding:90px 0;
    }

    .section-title{
      text-align:center;
      margin-bottom:60px;
    }

    .section-title h2{
      font-size:42px;
      font-weight:800;
      color:#111;
      margin-bottom:15px;
    }

    .section-title p{
      max-width:700px;
      margin:auto;
      color:#666;
      line-height:1.8;
    }

    /* ================= GALLERY CARD ================= */

    .gallery-item{
      position:relative;
      overflow:hidden;
      border-radius:22px;
      cursor:pointer;
      background:#fff;
      box-shadow:0 8px 30px rgba(0,0,0,0.08);
      transition:0.4s ease;
    }

    .gallery-item img{
      width:100%;
      height:320px;
      object-fit:cover;
      transition:0.6s ease;
      display:block;
    }

    .gallery-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      padding:25px;
      opacity:0;
      transition:0.4s ease;
    }

    .gallery-overlay h5{
      color:#fff;
      font-weight:700;
      margin-bottom:8px;
      transform:translateY(20px);
      transition:0.4s ease;
    }

    .gallery-overlay span{
      color:#ddd;
      font-size:14px;
      transform:translateY(20px);
      transition:0.5s ease;
    }

    .gallery-icon{
      position:absolute;
      top:20px;
      right:20px;
      width:50px;
      height:50px;
      background:#d4af37;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:22px;
      transform:scale(0);
      transition:0.4s ease;
    }

    .gallery-item:hover img{
      transform:scale(1.08);
    }

    .gallery-item:hover .gallery-overlay{
      opacity:1;
    }

    .gallery-item:hover .gallery-overlay h5,
    .gallery-item:hover .gallery-overlay span{
      transform:translateY(0);
    }

    .gallery-item:hover .gallery-icon{
      transform:scale(1);
    }

    .gallery-item:hover{
      transform:translateY(-8px);
    }

    /* ================= RESPONSIVE ================= */

    @media(max-width:991px){

      .hero-content h1{
        font-size:46px;
      }

      .gallery-item img{
        height:280px;
      }

      .section-title h2{
        font-size:34px;
      }
    }

    @media(max-width:767px){

      .gallery-hero{
        height:320px;
      }

      .hero-content h1{
        font-size:34px;
      }

      .hero-content p{
        font-size:15px;
      }

      .gallery-section{
        padding:70px 0;
      }

      .section-title h2{
        font-size:28px;
      }

      .gallery-item img{
        height:250px;
      }
    }

    @media(max-width:575px){

      .gallery-item{
        border-radius:18px;
      }

      .gallery-item img{
        height:220px;
      }

      .hero-content h1{
        font-size:28px;
      }
    }
    .custom-icon{
    width:50px;
    height:50px;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    text-decoration:none;
    font-family:'Poppins', sans-serif;
    box-shadow:0 4px 10px rgba(0,0,0,0.2);
    transition:0.3s ease;
}

.custom-icon:hover{
    transform:scale(1.1);
    color:#fff;
}