@font-face {
  font-family: "SangBleuItalic";
  src: url("fonts/SangBleuOGSerifTrial-MediumItalic.otf") format("opentype");
  src: url("fonts/FormaDJRDisplayCondensed-Regular-Testing.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
}

/* ===== Body & Global Styles ===== */
/* ===== Body & Global Styles ===== */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

/* TRANSPARENT NAVBAR BY DEFAULT */
.custom-navbar {
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  padding: 6px 0;
}

/* LOGO SIZE */
.navbar-logo {
  height: 60px;
  width: auto;
}

/* NAV LINKS LEFT & CLEAN */
.navbar-nav {
  align-items: center;
}

.navbar-dark .nav-link {
  font-size: 14px;
  padding: 6px 14px;
  font-family: Poligon Regular;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff !important;
  padding: 6px 14px;
}
/* Navbar links zoom animation */
.navbar-nav .nav-link{
  transition: transform 0.3s ease, color 0.3s ease;
  font-size: 15px;                 /* optional */
}

/* Hover effect */
.navbar-nav .nav-link:hover{
  transform: scale(1.15);
  color: #ffffff;                  /* color optional */
}

.navbar-nav{
  align-items: center;
}

.navbar-nav .nav-item{
  padding: 0 6px;
}

@media (max-width: 768px){
  .navbar-nav .nav-link:hover{
    transform: none;
  }
}
/* SCROLL PE BLACK */
.custom-navbar.scrolled {
  background: #000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
/* ---------------- HERO BANNER ---------------- */

/* HERO CONTAINER */
.bannerimage {
  position: relative;
  width: 100%;
  height: 100svh;          /* iOS Safari fix */
  overflow: hidden;
  background: #000;
}

@supports not (height: 100svh) {
  .bannerimage {
    height: 100vh;
  }
}

/* VIDEO */
.banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;      /* 🔥 NO black space */
  object-position: center;/* 🔥 NO weird crop */
  background: #000;
}

.about-section{
  padding: 80px 60px;
  background: #ffffff;
}

/* FLEX LAYOUT */
.about-wrapper{
  display: flex;
  gap: 60px;
  align-items: flex-start;   /* 🔥 image ke top se content start */
}

/* LEFT IMAGE – SQUARE */
.about-image{
  width: 380px;
  height: 380px;
  flex-shrink: 0;
}

.about-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RIGHT CONTENT */
.about-content{
  flex: 1;                  /* 🔥 full remaining width le */
  max-width: none;          /* 🔥 no limit */
  padding: 0;
  margin: 0;
}

/* HEADING */
.about-title{
  font-size: 48px;
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";
  font-weight: 500;
  color: #000;
  margin: 0 0 10px 0;   
  line-height: 1.1;
  /* 🔥 image ke top se exact align */
}

/* PARAGRAPH */
.about-text{
  font-family: "Calibri", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #000;
  margin: 0;                /* 🔥 unwanted gap remove */
}

/* KNOW MORE BUTTON */
.know-more{
  display: inline-block;    /* 🔥 content ke end me naturally */
  margin-top: 0px;         /* 🔥 paragraph ke baad gap */
  font-size: 22px;
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";
  font-weight: 500;
  color: #000;
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
}

/* IMAGE BELOW PARAGRAPH – NO CUT */
.about-inline-image{
  margin: 18px 0 18px 0;
  width: 100%;
}

.about-inline-image img{
  width: 100%;
  height: auto;          /* 🔥 FIX – image full dikhegi */
  object-fit: contain;  /* 🔥 NO CROPPING */
  display: block;
}





/* WHY CHOOSE US SECTION */
.why-choose-section{
  background-color: #000;   /* 🔥 PURE BLACK */
  padding: 80px 60px;
}


/* MAIN HEADING */


.why-heading-strip{
  width: 100%;
  background-color: #ffffff;     /* 🔥 white strip */
  padding: 30px 60px;            /* height of strip */
}

.why-title{
  margin: 0;
  font-size: 48px;
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";
  font-weight: 500;
  color: #000;                   /* 🔥 black heading */
  text-align: left;
}
.why-heading-strip{
  border-bottom: 1px solid #0c0c0c;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  justify-content: center;
  background-color: #000;   /* ✅ MOST IMPORTANT */
}


/* CARD – SMALL SQUARE + ROUNDED */
.why-card {
  width: 280px;
  height: 200px;
  background: black;
  border: 1px solid black;
  padding: 18px;
  border-radius: 0px; /* 👈 rounded corners */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* DEFAULT VIEW */
/* DEFAULT VIEW */
.card-front {
  display: flex;
  align-items: center;      /* image + heading vertically center */
  gap: 14px;                /* image aur heading ke beech space */
  width: 100%;
}

/* IMAGE – LEFT */
.card-front img {
  width: 90px;
  height: auto;
  flex-shrink: 0;           /* image squeeze na ho */
}

/* HEADING – RIGHT OF IMAGE */
.card-front h3 {
  font-size: 20px;
  margin: 0;
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";
  color: white;
  line-height: 1.3;
}



/* HOVER CONTENT */
.card-hover {
  display: none;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: white;
  align-items: center;
  justify-content: center;
  padding: 8px;
  font-family: Calibri, sans-serif;
}

/* HOVER EFFECT */
.why-card:hover .card-front {
  display: none;
}

.why-card:hover .card-hover {
  display: flex;
}

/* OPTIONAL – nice hover feel */
.why-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Default card */
.why-card {
  background: #000;
  transition: background 0.4s ease;
}

/* On hover – background white */
.why-card:hover {
  background: #fff;
}


/* Default hover text (hidden but prepared) */
.card-hover {
  color: #fff;
  transition: color 0.4s ease;
}

/* On hover – paragraph text black */
.why-card:hover .card-hover {
  color: #000;
}


.awards-heading {
  margin-left: 55px;
  margin-bottom: 40px;
}

.logo-heading {
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";
  font-size: 48px;
  font-weight: 500;
  color: #000;
  margin: 0;
  line-height: 1.2;
}

.logo-subheading {
  font-family: "Goudy Old Style", serif;
  font-size: 30px;
  font-weight: 400;
  color: #000;
  margin-left: 0px;
  white-space: nowrap; /* 👈 same line force */
}

/* Tablet */
@media (max-width: 1024px) {
  .logo-subheading {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .logo-subheading {
    font-size: 18px;
    white-space: normal;  /* 🔥 wrap allow */
    line-height: 1.4;
  }
}
/* Wrapper */
.logo-slider-wrapper{
  position: relative;
  display: flex;
  align-items: center;
}

/* Slider */
.logo-slider{
  overflow: hidden;
  width: 100%;
}

/* Track */
.logo-track{
  display: flex;
  gap: 70px;
  transition: transform 0.6s ease;
}

/* Logo Item */
.logo-item{
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img{
  max-width: 120px;
  height: auto;
  filter: grayscale(100%) brightness(0); /* 🔥 BLACK LOGOS */
  opacity: 0.85;
}

/* Arrows */
.logo-arrow{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  margin: 0 20px;
}



.logo-slider-section{
  padding: 80px 0;
  background: #ffffff;
}

.logo-heading{
 font-family: "FormaDJRDisplayNarrow-Thin-Testing";
  font-size: 48px;
  color:  #000;
  text-align: left;
  margin: 0 0 20px 0;   /* 🔥 top + bottom controlled */
  font-weight: 500;
  margin-left: 55px;
}

/* Wrapper */
.logo-slider-wrapper{
  position: relative;
  display: flex;
  align-items: center;
}

/* Slider */
.logo-slider{
  overflow: hidden;
  width: 100%;
}

/* Track */
.logo-track{
  display: flex;
  gap: 70px;
  transition: transform 0.6s ease;
}

/* Logo Item */
.logo-item{
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img{
  max-width: 120px;
  height: auto;
  filter: none;
  opacity: 1;
}

/* Arrows */
.logo-arrow{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  margin: 0 20px;
}



/* REMOVE black / gradient effect from developer logos */
.logo-slider-section .slider-item img{
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

/* REMOVE any overlay coming from common slider */
.logo-slider-section .slider-viewport::before,
.logo-slider-section .slider-viewport::after{
  display: none !important;
}

/* Ensure transparent background */
.logo-slider-section .slider-item{
  background: transparent !important;
}

.nav-btn.left{ left: 10px; }
.nav-btn.right{ right: 10px; }

.nav-btn:hover{
  background: #1aa39a;
  color: #fff;
}


/* Footer */
.footer{
  background:#000;
  box-shadow: 0 4px 15px rgba(63, 45, 45, 0.4);
   color:#fff;
  padding:60px 80px 30px;
  font-family: Poligon Regular, sans-serif;
}

/* TOP */
.footer-top{
  display:flex;
  gap:80px;
  align-items:flex-start;
}

/* Columns */
.footer-col{
  text-align:left;
}

.footer-logo{
  max-width:160px;
  margin-bottom:20px;
}

.footer-col p{
  font-size: 20px;
  line-height:1.7;
  opacity:0.85;
}

/* Lists */
.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-col li{
  margin-bottom:12px;
}

.footer-col a{
  color:#fff;
  text-decoration:none;
  font-size: 20px;
}

.footer-col a:hover{
  opacity:0.7;
}

/* Headings */
.footer-col h4{
  font-size: 20px;
  margin-bottom:18px;
  font-weight:500;
}

/* Social */
.social-icons a{
  margin-right:15px;
  font-size: 20px;
}

/* Bottom */
.footer-bottom{
  margin-top:40px;
  padding-top:15px;
  border-top:1px solid #222;
  display:flex;
  justify-content:flex-end;
}    
.footer-bottom-right a{
  color:#fff;
  margin-left:20px;
  font-size:18px;
  text-decoration:none;
}
/* ================= POLICY POPUP OVERLAY ================= */

.policy-modal{
  position: fixed;
  inset: 0;
  display: none;                 /* JS se show/hide */
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
}

/* ================= POPUP BOX ================= */

.policy-content{
  background: #fff;
  width: 90%;
  max-width: 650px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  border-radius: 10px;
  position: relative;

  /* 🔥 Control heading–paragraph gap here */
  --hp-gap: 28px;
}

/* ================= HEADING ================= */

.policy-content h2{
  margin-bottom: var(--hp-gap);
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
}

/* ================= PARAGRAPH ================= */

.policy-content p{
  margin-top: 0;
  margin-bottom: 18px;
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

/* ================= CLOSE BUTTON ================= */

.policy-close{
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #555;
  transition: color 0.3s ease;
}

.policy-close:hover{
  color: #000;
}

/* ================= SCROLLBAR (OPTIONAL PREMIUM) ================= */

.policy-content::-webkit-scrollbar{
  width: 6px;
}

.policy-content::-webkit-scrollbar-thumb{
  background: #ccc;
  border-radius: 10px;
}

.policy-content::-webkit-scrollbar-track{
  background: transparent;
}

/* ================= MOBILE OPTIMIZATION ================= */

@media (max-width: 600px){
  .policy-content{
    padding: 25px;
    --hp-gap: 22px;
  }

  .policy-content h2{
    font-size: 22px;
  }

  .policy-content p{
    font-size: 14px;
  }
}



.faq-section{
  padding:60px 80px;
  background:#fff;
  border-bottom:1px solid #ddd;
}
/* HEADER */
.faq-header{
  display: flex;
  justify-content: space-between; 
  align-items: center;            
  cursor: pointer;
}

.faq-header h2{
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";
  font-size: 48px;
  color: #000;
  text-align: left;
  margin: 0;
  font-weight: 500;
   margin-left:-60px;  
}

.faq-section .container{
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: left;
}

.faq-toggle{
  font-size:22px;
  transition:transform 0.3s ease;
}

/* CONTENT (hidden initially) */
.faq-content{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.5s ease;
  margin-top:20px;
}

/* FAQ ITEMS */
.faq-item{
  border:1px solid #ccc;
  margin-bottom:15px;
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  padding:16px 20px;
  font-size:18px;
  font-weight:500;
  display:flex;
  justify-content:space-between;
  color: #000;
  cursor:pointer;
  font-family: "Goudy Old Style", serif;
}

.faq-answer{
  padding:0 20px 18px;
  font-size:18px;
  color:#000;
  display:none;
  line-height:1.6;
  font-family: "Calibri", sans-serif;
}

/* ACTIVE STATES */
.faq-section.active .faq-content{
  max-height:1000px;
}

.faq-toggle{
  display:flex;
  align-items:center;
  justify-content:center;
}

.faq-toggle .chevron{
  transition:transform 0.35s ease;
}

/* Rotate on open */
.faq-section.active .chevron{
  transform:rotate(180deg);
}

.faq-item.active .faq-answer{
  display:block;
}

.faq-item.active .faq-question span{
  transform:rotate(45deg);
}

.latest-news-section{
  padding:80px 0;
  background:#fff;
}

/* 🔥 LEFT ALIGNED HEADING */
.latest-news-section .section-title{
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";
  font-size: 48px;
  color:  #000;
  text-align: left;
  margin: 0 0 20px 0;   /* 🔥 top + bottom controlled */
  font-weight: 500;   
  margin-left: 55px;  /* keeps it perfectly left */
}

/* GRID */
.news-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
  gap:30px;
  padding:0 55px;
}

/* CARD */
/* GRID */
.news-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
  gap:30px;
  padding:0 55px;
}

/* CARD */
.news-card{
  background:#fff;
  border:1px solid #ddd;
  text-decoration:none;
  transition:0.4s ease;
}

/* CARD HOVER */
.news-card:hover{
  transform:translateY(-8px);
  box-shadow:0 10px 20px rgba(0,0,0,0.12);
}

/* IMAGE WRAPPER */
.news-img{
  width:100%;
  overflow:hidden;
}

.news-img img{
  width:100%;
  height:260px;
  object-fit:cover;           /* fill full width */
  object-position:center top; /* 🔥 face/content safe */
  display:block;
}




/* IMAGE ZOOM ON HOVER */
.news-card:hover .news-img img{
  transform:scale(1.08);
}

/* CONTENT */
.news-info{
  padding:20px 18px;
}

.news-date{
  font-size:13px;
  color:#000;
  margin-bottom:6px;
  font-family:"Goudy Old Style", serif;
}

.news-title{
  font-size:22px;
  font-weight:600;
  margin:0 0 10px;
  color:#000;
  font-family:"Goudy Old Style", serif;
}

.news-desc{
  font-size:16px;
  color:#000;
  line-height:1.6;
}

/* VIEW ALL NEWS */
.news-more{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-top:60px;
}

.btn-read-more{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding:12px 32px;
  font-family:"FormaDJRDisplayNarrow-Thin-Testing";
  font-size:22px;
  font-weight:500;
  color:#000;
  text-decoration:none;
  border:1px solid #000;
  transition:transform 0.4s ease;
}

/* ZOOM ONLY */
.btn-read-more:hover{
  transform:scale(1.1);
}
/* Buttons */
.btn-dark { background: #000; border:none; }
.btn-dark:hover { background:#333; }

 /* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "FormaDJRDisplayNarrow-Thin-Testing";
}

/* HERO */
.hero{
  position:relative;
  height:60vh;
  background:url('assets/images/top-view-travel-journal-accessories.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

.hero h1{
  position:relative;
  color:#fff;
  font-size:64px;
  letter-spacing:2px;
  z-index:1;
}

/* JOURNAL CONTENT */
.journal-content{
  max-width:1100px;
  margin:60px auto;
  padding:0 20px;
}

.journal-content h2{
  font-size:38px;
  margin-bottom:15px;
}

/* GRID */
.journal-grid{
  max-width:1100px;
  margin:60px auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.card{
  position:relative;
  height:320px;
  cursor:pointer;
  overflow:hidden;
  border-radius:12px;
}

.card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.5s ease;
}

.card:hover img{
  transform:scale(1.08);
}

.card::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.4);
}

.card h3{
  position:absolute;
  bottom:30px;
  left:30px;
  color:#fff;
  font-size:28px;
  z-index:1;
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero h1{
    font-size:42px;
  }
  .journal-grid{
    grid-template-columns:1fr;
  }
}


.project-filter-section{
  padding:80px 0;
  background:#f8f9fb;
}

.project-filter-section .container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* Heading */
.project-filter-section .section-heading{
  font-size:42px;
  font-weight:500;
  margin-bottom:25px;
  text-align:left;
}

/* Tabs */
.property-tabs{
  display:flex;
  gap:18px;
  margin-bottom:25px;
}

.property-tabs .tab{
  padding:10px 24px;
  border-radius:30px;
  border:1px solid #ddd;
  background:#fff;
  cursor:pointer;
  font-size:15px;
  transition:.3s;
}

.property-tabs .tab.active,
.property-tabs .tab:hover{
  background:#000;
  color:#fff;
  border-color:#000;
}

/* Search Bar */
.search-bar{
  display:flex;
  align-items:center;
  gap:15px;
  background:#fff;
  padding:16px;
  border-radius:60px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.search-bar select,
.search-bar input{
  border:none;
  outline:none;
  font-size:15px;
  padding:10px;
  width:100%;
}

.search-bar select{ max-width:180px; }
.search-bar input{ flex:1; }

/* Search Button */
.search-btn{
  width:52px;
  height:52px;
  border-radius:50%;
  border:none;
  background:#000;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.3s;
}

.search-btn:hover{ background:#333; }

.search-btn svg{ transition:.3s; }
.search-btn:hover svg{ transform:scale(1.1); }

/* Cards */
.category-grid{
  margin-top:50px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.category-card{
  position:relative;
  height:280px;
  overflow:hidden;
  border-radius:18px;
  text-decoration:none;
}

.category-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s;
}

.category-card span{
  position:absolute;
  bottom:20px;
  left:20px;
  background:rgba(0,0,0,.65);
  color:#fff;
  padding:8px 20px;
  border-radius:30px;
  font-size:16px;
}

.category-card:hover img{
  transform:scale(1.12);
}

/* Responsive */
@media(max-width:900px){
  .search-bar{
    flex-wrap:wrap;
    border-radius:20px;
  }
  .search-bar select{
    max-width:100%;
  }
  .category-grid{
    grid-template-columns:1fr;
  }
}

/* Responsive*/
img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  overflow-x: hidden;
}

.container {
  width: 100%;
}
@media (max-width: 1024px) {
  .navbar-logo {
    height: 48px;
  }

  .navbar-nav .nav-link {
    font-size: 14px;
    padding: 6px 10px;
  }
}
@media (max-width: 1024px) {
  .about-section {
    padding: 60px 40px;
  }

  .about-wrapper {
    gap: 40px;
  }

  .about-image {
    width: 320px;
    height: 320px;
  }

  .about-title {
    font-size: 38px;
  }

  .about-text {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 20px;
  }

  .about-wrapper {
    flex-direction: column;
    gap: 25px;
  }

  .about-image {
    width: 100%;
    height: auto;
  }

  .about-title {
    font-size: 32px;
  }

  .about-text {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 50px 20px;
  }

  .why-heading-strip {
    padding: 20px;
  }

  .why-title {
    font-size: 32px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .logo-heading {
    font-size: 36px;
    margin-left: 30px;
  }

  .logo-track {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .logo-heading {
    font-size: 30px;
    margin-left: 20px;
  }

  .logo-item img {
    max-width: 90px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 20px;
  }

  .faq-header h2 {
    font-size: 32px;
    margin-left: 0;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 15px;
  }
}
@media (max-width: 1024px) {
  .news-grid {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .latest-news-section {
    padding: 50px 0;
  }

  .latest-news-section .section-title {
    font-size: 32px;
    margin-left: 20px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .news-img img {
    height: 220px;
  }
}
@media (max-width: 1024px) {
  .footer {
    padding: 50px 40px;
  }

  .footer-top {
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-bottom-right a {
    margin-left: 10px;
    font-size: 16px;
  }
}

