
/* DEFAULT (Desktop) */
.header {
  position: static;
}

/* MOBILE ONLY */
@media (max-width: 768px) {

  .header {
    position: fixed;
   top: 106px;
    left: 0;
    width: 100%;
    z-index: 998;
    background: #fff;
  }

}
/* Fixed Top Ads */
.top-ads {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 994;
  background: #0f172a;

  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px;
}

/* Hide scrollbar */
.top-ads::-webkit-scrollbar {
  display: none;
}

.top-ads img {
  height: 100px;
  border-radius: 8px;
}

/* Content ko niche shift karo */
body {
  padding-top: 130px; /* ads height ke approx equal */
}

.main{
   padding-top: 100px !important; 
}












  /* --- Desktop Styles (Keep your existing styles, adding these helpers) --- */
.hamburger, .close-btn {
  display: none; /* Hidden on Desktop */
}

.active-link {
  font-weight: bold;
  color: #f04544;
}

/* --- Mobile Styles --- */
@media (max-width: 768px) {
.main{
   padding-top: 10px !important; 
}

  body {
  padding-top: 160px; /* ads height ke approx equal */
}

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }

  /* Hide Social Icons and Original Center Title Text on Mobile */
  .social, .brand-text br, .brand-text small {
    display: none; 
  }

  .center-title {
    flex-grow: 1;
    text-align: left;
    margin-left: 15px;
  }

  /* Hamburger Bars */
  .hamburger {
    display: block;
    cursor: pointer;
  }
  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: 0.3s;
  }

  /* Full Screen Mobile Menu */
  .menu-row {
    position: fixed;
    top: 0;
    right: -100%; /* Initially hidden */
    width: 80%;
    height: 100vh;
    background: #000000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: 0.4s ease-in-out;
    z-index: 99999;
  }

  .menu-row.open {
    right: 0; /* Slide in */
  }

  .menu-row a {
    display: block;
    padding: 20px;
    font-size: 1.2rem;
    text-decoration: none;
    color: #ffffff !important;
    width: 100%;
   text-align: left;
           padding: 0px 26px;
        border-bottom: 1px solid #ffffff54;
  }

  .close-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    cursor: pointer;
    color: #f04544;
  }
}
*{margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif;}
body{background:#eaeaea;}

/* TOP ADS */
.top-ads{
  display:flex;
  gap:12px;
  padding:15px;
}
.top-ads img{
  width:25%;
  height:90px;
  border-radius:12px;
  object-fit:cover;
}

/* HEADER */
.header{
  display:grid;
  grid-template-columns:1fr 2fr 80px;
  background:#fff;
  align-items:center;
  border-bottom:2px solid #ccc;
}
.logo{padding:10px;font-weight:bold;}
.center-title{text-align:center;font-weight:700;}
.menu{
  background:#000;color:#fff;
  width:40px;height:40px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  margin:auto;
}

/* MAIN */
.main{
  display:grid;
  grid-template-columns:16% 59% 25%;
  gap:15px;
  padding:15px;
}

/* LEFT ADS */
.left-ad{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.left-ad img{
  width:100%;
  height:100px;
  border-radius:12px;
  object-fit:cover;
}

/* CENTER */
.center{display:flex;flex-direction:column;gap:15px;}

/* NEWS */
.news{
  background:#fff;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 3px 10px rgba(0,0,0,0.1);
}
.news img{
  width:100%;
  height:220px;
  object-fit:cover;
}
.news p{
  padding:10px;
  font-weight:600;
}

/* BIG AD */
.big-ad img{
  width:100%;
  height:140px;
  border-radius:15px;
  object-fit:cover;
}

/* RIGHT */
.right{display:flex;flex-direction:column;gap:10px;}

.latest-title{text-align:center;font-weight:bold;}

.latest-item{
  display:flex;
  align-items:center;
  gap:10px;
}
.latest-item img{
  width:40px;height:30px;border-radius:6px;
}
.latest-item p{
  flex:1;
  height:20px;
  border-radius:10px;
}

/* COLOR BARS */
.c1{background:#8ef0a0;}
.c2{background:#e48ad8;}
.c3{background:#f5ef9c;}
.c4{background:#ff8c8c;}
.c5{background:#8c9eff;}

.right-ad img{
  width:100%;
  height:150px;
  border-radius:12px;
  object-fit:cover;
}

/* FOOTER */
.footer{
  background:#000;
  color:#fff;
  text-align:center;
  padding:20px;
}

/* MOBILE */
@media(max-width:768px){

.logo2{
  width: 97px;
    margin-bottom: -7px;
    background: black;
}
.top-ads{overflow-x:auto;}
.top-ads img{min-width:200px;}

.main{display:flex;flex-direction:column;}

.left-ad{
  flex-direction:row;
  overflow-x:auto;
}
.left-ad img{min-width:120px;}

.news img{height:180px;}
}



.footer{
  margin-top:30px;
}

.footer-container{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  padding:40px 20px;
  max-width:1400px;
  margin:auto;
}

.footer-col h3{
  color:#ef4444;
  margin-bottom:10px;
}

.footer-col h4{
  margin-bottom:12px;
}

.footer-col p{
  font-size:14px;
  line-height:1.6;
  color:#cbd5e1;
}

.footer-col ul{
  list-style:none;
}

.footer-col ul li{
  margin-bottom:8px;
}

.footer-col ul li a{
  text-decoration:none;
  color:#cbd5e1;
  font-size:14px;
  transition:0.3s;
}

.footer-col ul li a:hover{
  color:#ef4444;
}

.footer-social{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.footer-social a{
  color:#cbd5e1;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

.footer-social a:hover{
  color:#ef4444;
}

.footer-bottom{
  text-align:center;
  padding:15px;
  border-top:1px solid #1e293b;
  font-size:13px;
  color:#94a3b8;
}
.zxg-news-section {
  /* background: linear-gradient(135deg, #eef2f7, #f8fafc); */
  padding: 40px;
  border-radius: 20px;
  max-width: 1400px;
  margin: 40px auto;
}

.zxg-title {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  color: white;
}

/* ROW */
.zxg-news-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* COLUMN */
.zxg-col {
  width: calc(25% - 15px); /* 4 in one row */
}

/* CARD */
.zxg-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.zxg-card:hover {
  transform: translateY(-8px);
}

.zxg-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.zxg-card p {
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .zxg-col {
    width: calc(50% - 10px); /* tablet = 2 */
  }
}

@media (max-width: 576px) {
  .zxg-col {
    width: 100%; /* mobile = 1 */
  }
}


:root{
  --primary:#0f172a;
  --accent:#ef4444;
  --bg:#0f172a;
  --card:#ffffff;
  
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:var(--bg);
  overflow-x: hidden;
}

.container{
  max-width:1400px;
  margin:auto;
}

/* TOP ADS */
.top-ads{
  display:flex;
  gap:12px;
  padding:15px;
}
.top-ads img{
  width: 19.3%;
  height:110px;
  border-radius:12px;
  object-fit:cover;
  transition:0.3s;
  border: 1px solid white;
}
.top-ads img:hover{
  transform:scale(1.03);
}

/* HEADER */
.header{
  display:grid;
  grid-template-columns:1fr 2fr 1fr;
  align-items:center;
  /* padding:15px; */
  background:#fff;
  border-bottom:2px solid #e5e7eb;

  /* add  */
  position: absolute;
    left: 0;
    right: 0;
}

.logo1{
  background: black;
    margin-bottom: -2px;
    width: 235px;
}
.logo1 span{color:var(--accent);}
.logo2{
    text-align: center;
margin-top: 8px;
width: 190px;
margin-left: 9px;
}
.center-title{
  text-align:center;
  font-size:19px;
  font-weight:700;
}
.center-title span{color:var(--accent);}



/* MAIN GRID */
.main{
  display:grid;
  grid-template-columns:16% 59% 25%;
  gap:15px;
  padding:15px;
}

/* LEFT AD */
.left-ad img{
  width:100%;
  height:100%;
  border-radius:12px;
  object-fit:cover;
  border: 1px solid white;
}

/* CENTER */
.center{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.big-ad img{
  width:100%;
  height:220px;
  border-radius:12px;
  object-fit:cover;
  border: 1px solid white;
}

/* NEWS GRID */
.news-grid{
  display:grid;
  grid-template-columns:32% 68%;
  gap:15px;
}

.news-card{
  background:var(--card);
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
  transition:0.3s;
}
.news-card:hover{
  transform:translateY(-5px);
}

.news-card img{
  width:100%;
  height:120px;
  object-fit:cover;
  border: 1px solid white;
}

.news-card p{
  padding:10px;
  font-weight:600;
  font-size:14px;
}

.small-news{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.big-news{
  background:var(--card);
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 4px 15px rgba(0,0,0,0.1);
  width: 32.3rem;
}

.big-news img{
  width:100%;
  height:300px;
  object-fit:cover;
  border: 1px solid white;
}

.big-news p{
  padding:15px;
  font-size:18px;
  font-weight:700;
}

.bottom-ad img{
  width:100%;
  height:220px;
  border-radius:12px;
  object-fit:cover;
  border: 1px solid white;
}

/* RIGHT PANEL */
.right{
  display:flex;
  flex-direction:column;
  gap:12px;
  width: 19rem;
}

.latest-title{
  text-align:center;
  font-weight:700;
  background:#fff;
  padding:10px;
  border-radius:10px;
}

.latest-item{
  display:flex;
  gap:10px;
  background:#fff;
  padding:8px;
  border-radius:10px;
  align-items:center;
  box-shadow:0 2px 8px rgba(0,0,0,0.08);
  transition:0.3s;
}

.latest-item:hover{
  transform:translateX(5px);
}

.latest-item img{
  width:75px;
  height:60px;
  border-radius:6px;
  object-fit:cover;
  border: 1px solid white;
}

.latest-item p{
  font-size:13px;
  font-weight:600;
}

.right-ad img{
  width:100%;
  height:120px;
  border-radius:10px;
  object-fit:cover;
  border: 1px solid white;
}

/* SCROLLBAR */
::-webkit-scrollbar{
  width:6px;
}
::-webkit-scrollbar-thumb{
  background:#cbd5f5;
  border-radius:10px;
}
.social {
 display: flex;
    gap: 20px;
    background: black;
    height: 87px;
    align-items: center;
    margin-bottom: -3px;
    padding: 0px 50px;
}

.social a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.social img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}


/* ================= MOBILE EXACT DESIGN ================= */
@media (max-width:768px){

/* TOP ADS SLIDER */
.top-ads{
  overflow-x:auto;
}
.top-ads img{
  min-width:220px;
  height:90px;
}

/* HEADER */
.header{
  grid-template-columns: 1fr 1fr auto;
  padding:8px;
}
.logo1{
width: 119px;
        height: 49px;
        background: black;
        margin-top: -8px;
        margin-bottom: -10px;
        margin-left: -8px;
}
.logo2{
  width:100px;
          margin-bottom: 20px;
}
.center-title{
  font-size:14px;
}
.social{
  height:auto;
  padding:5px;
  gap:10px;
}

/* MAIN STACK */
.main{
  display:block;
  padding:10px;
}

/* LEFT ADS → SIDE STACK LIKE IMAGE */
.left-ad{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.left-ad img{
  height:100px;
}

/* CENTER FULL WIDTH */
.center{
  width:100%;
}

/* BIG NEWS */
.big-news{
  width:100%;
}
.big-news img{
  height:200px;
}

/* SMALL NEWS */
.news-grid{
  display:block;
}
.small-news{
  display:block;
}
.news-card{
  margin-bottom:10px;
}

/* BIG ADS */
.big-ad img,
.bottom-ad img{
  height:120px;
}

/* RIGHT PANEL → SIDE SECTION */
.right{
  width:100%;
  margin-top:10px;
}

/* LATEST NEWS STYLE (COLORED BARS LIKE IMAGE) */
.latest-item{
  background:none;
  box-shadow:none;
  padding:5px 0;
}

.latest-item img{
  width:30px;
  height:20px;
}

.latest-item p{
  flex:1;
  height:20px;
  border-radius:10px;
  font-size:0; /* hide text */
}

/* COLOR BARS */
.latest-item:nth-child(2) p{background:#8ef0a0;}
.latest-item:nth-child(3) p{background:#e48ad8;}
.latest-item:nth-child(4) p{background:#f3ec96;}
.latest-item:nth-child(5) p{background:#ff8c8c;}
.latest-item:nth-child(6) p{background:#8c9eff;}

/* RIGHT AD */
.right-ad img{
  height:140px;
}

/* NEWS SECTION */
.zxg-news-row{
  flex-direction:column;
}
.zxg-col{
  width:100%;
}

/* FOOTER */
.footer-container{
  grid-template-columns:1fr;
  text-align:center;
}

}

.menu-row {
     margin-top: 5px;
    padding: 0px 0;
    display: flex;
    justify-content: center;
    gap: 37px;
    flex-wrap: wrap;
    margin-left: -6rem;
}

.menu-row a {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
}

.menu-row a:hover {
  color: #f04544;
}

.top-ads {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 10px;
  padding: 10px;
  -webkit-overflow-scrolling: touch;
}

.top-ads::-webkit-scrollbar {
  display: none;
}

.top-ads img {
  flex: 0 0 85%;
  max-width: 85%;
  border-radius: 10px;
  object-fit: cover;
}

/* ONLY MOBILE */
@media (min-width: 768px) {
  .top-ads {
    overflow: hidden;
    justify-content: center;
  }

  .top-ads img {
    flex: unset;
    max-width: 300px;
  }

  
  
}
/* MOBILE ONLY */
@media (max-width: 768px) {

  .main {
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 15px;
  }

  /* Hide side ads */
  .left-ad,
  .right-ad {
    display: none;
  }

  /* Center full width */
  .center {
    width: 100%;
  }

  /* Big banner */
  .big-ad img,
  .bottom-ad img {
    width: 100%;
    border-radius: 10px;
  }

  /* News grid → column */
  .news-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  /* Big headline first */
  .big-news img {
    width: 100%;
    border-radius: 10px;
  }

  .big-news p {
    font-size: 18px;
    font-weight: 600;
    margin-top: 8px;
  }

  /* Small news cards */
  .small-news {
    display: flex;
    gap: 10px;
            flex-direction: row;
  }

  .news-card {
    width: 50%;
  }

  .news-card img {
    width: 100%;
    border-radius: 8px;
  }

  .news-card p {
    font-size: 14px;
    margin-top: 5px;
  }

  /* Right section becomes below */
  .right {
    width: 100%;
  }

  .latest-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .latest-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }

  .latest-item img {
    width: 90px;
    height: 55px;
    border-radius: 6px;
    object-fit: cover;
  }

  .latest-item p {
    font-size: 14px;
  }

}

/* MOBILE ONLY */
@media (max-width: 768px) {

  .right {
    width: 100%;
    margin-top: 15px;
  }

  /* Title */
  .latest-title {
    font-size: 18px;
    font-weight: 700;
    padding-left: 10px;
    border-left: 4px solid #f04544;
    margin-bottom: 12px;
  }

  /* News item card */
  .latest-item {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #fff;
    padding: 8px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }

  .latest-item img {
    width: 95px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
  }

  .latest-item p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
  }

  /* Hide right ad in mobile */
  .right-ad {
    display: none;
  }

}

/* MOBILE ONLY */
@media (max-width: 768px) {

  .zxg-news-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .zxg-col {
    width: 100% !important;
  }

  .zxg-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
  }

  .zxg-card p {
    font-size: 14px;
    margin-top: 5px;
  }

}

/* MOBILE ONLY */
@media (max-width: 768px) {

  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
  }

  .footer-col {
    width: 100%;
  }

  .footer-col h4 {
   text-align: left;
        margin-bottom: 10px;
        color: white;
        font-size: 18px;
  }

  .footer-col p {
    text-align: left;
    font-size: 14px;
  }

  .footer-col ul {
    padding: 0;
  }

  .footer-col ul li {
    list-style: none;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .footer-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-bottom {
    text-align: left;
    font-size: 13px;
    margin-top: 10px;
  }

  .brand-text{
    display: none;
  }
  .social{
      display: none;
  }

}


/* mission vission  */

.mvv-section {
     background: #0f172a;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
    color: #fff;
}



/* title */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: "";
    width: 60%;
    height: 3px;
    background: #fff;
    position: absolute;
    left: 20%;
    bottom: -8px;
}

/* row */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

/* columns */
.col-4 {
    flex: 1 1 30%;
}

/* responsive */
@media(max-width:768px){
    .col-4 {
        flex: 1 1 100%;
    }
}

/* glass card */
.card-glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* hover effect */
.card-glass:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* icon */
.icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* headings */
.card-glass h3 {
    margin-bottom: 10px;
}

/* animation */
.fade-up {
    animation: fadeUp 1s ease;
}
@keyframes fadeUp {
    from {opacity:0; transform:translateY(30px);}
    to {opacity:1; transform:translateY(0);}
}


/* about section  */


.about-section {
    background: #0f172a;
    font-family: Arial, sans-serif;
    color: #fff;
    padding: 60px 20px;
}

/* container */


/* row */
.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

/* columns */
.col-6 {
    flex: 1 1 48%;
}

/* responsive */
@media(max-width:768px){
    .col-6 {
        flex: 1 1 100%;
    }
}

/* glass effect */
.glass-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* heading */
.about-title {
    font-size: 32px;
    font-weight: bold;
    position: relative;
}
.about-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #fff;
    position: absolute;
    bottom: -8px;
    left: 0;
}

/* text */
.about-text {
    margin-top: 20px;
    line-height: 1.6;
}

/* button */
.btn-custom {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background: #fff;
    color: #0a2a6c;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.btn-custom:hover {
    background: #000;
    color: #fff;
}

/* image */
.about-img img {
    width: 100%;
    border-radius: 20px;
    transition: 0.4s;
}
.about-img img:hover {
    transform: scale(1.05);
}

/* animation */
.fade {
    animation: fadeUp 1s ease;
}
@keyframes fadeUp {
    from {opacity:0; transform:translateY(30px);}
    to {opacity:1; transform:translateY(0);}
}

.f1{
  margin-top: 59px;
}
.f2{
   margin-top: 89px;
}


/* contact  */

.contact-section {
  
    padding: 60px 20px;
    font-family: Arial, sans-serif;
    color: #fff;
}

/* container */


/* row */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* columns */
.col-6 {
    flex: 1 1 48%;
}

/* responsive */
@media(max-width:768px){
    .col-6 {
        flex: 1 1 100%;
    }
}

/* glass box */
.glass-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* title */
.contact-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
}
.contact-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #fff;
    position: absolute;
    bottom: -8px;
    left: 0;
}

/* contact info */
.contact-info p {
    margin: 15px 0;
    font-size: 16px;
}

/* form */
.form-group {
    margin-bottom: 15px;
}
input, textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    outline: none;
}
textarea {
    resize: none;
    height: 120px;
}

/* button */
.btn-submit {
    background: #fff;
    color: #0a2a6c;
    padding: 10px 25px;
    border-radius: 30px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.btn-submit:hover {
    background: #000;
    color: #fff;
}

/* animation */
.fade-up {
    animation: fadeUp 1s ease;
}
@keyframes fadeUp {
    from {opacity:0; transform:translateY(30px);}
    to {opacity:1; transform:translateY(0);}
}





.contact-section {
    background: linear-gradient(135deg,#0a2a6c,#1e88e5);
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
        background: #161616;
    margin-bottom: -32px;
}

/* container */


/* row */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
}

/* columns */
.col-6 {
    flex: 1 1 48%;
}

/* responsive */
@media(max-width:768px){
    .col-6 {
        flex: 1 1 100%;
    }

    .contact-section {
    background: linear-gradient(135deg, #0a2a6c, #1e88e5);
    padding: 37px 14px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background: #161616;
    margin-bottom: -32px;
}
.f1 {
    margin-top: -9px;
}
}

/* glass card */
.glass-box {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
    height: 100%;
    transition: 0.3s;
}
.glass-box:hover {
    transform: translateY(-6px);
}

/* title */
.contact-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}
.contact-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #fff;
    position: absolute;
    bottom: -8px;
    left: 0;
}

/* contact items */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}
.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

/* form */
.form-group {
    margin-bottom: 18px;
}
input, textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 14px;
}
textarea {
    height: 120px;
    resize: none;
}

/* button */
.btn-submit {
    background: #fff;
    color: #0a2a6c;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.btn-submit:hover {
    background: #000;
    color: #fff;
}

/* animation */
.fade-up {
    animation: fadeUp 1s ease;
}
@keyframes fadeUp {
    from {opacity:0; transform:translateY(40px);}
    to {opacity:1; transform:translateY(0);}
}


/* gallery  */

.brand-text{
  position: relative !important;
    left: -49px !important;
}