* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: 'Poppins', sans-serif;
  color:#0f172a;

  background: radial-gradient(circle at top, #0b1220, #05070d 60%);
}

/* TOP RED STRIP */
.top-strip {
  background: #33A6E0;
  padding: 12px 0;
}

.strip-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.strip-links a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.container{
  width: 92%;
  max-width: 1400px;
  margin: auto;
}

/* HEADER */

.skills-header{
  background: #f3f3f3;
  padding: 34px 0;
  border-bottom: 1px solid #e5e7eb;
}

.skills-header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative; /* IMPORTANT */
}

/* LEFT */

.header-left{
  display: flex;
  align-items: center;
  gap: 20px;
}

.call-icon{
  width: 45px;
  height: 45px;
  border: 2px solid #0094D9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-icon i{
  color: #0094D9;
  font-size: 20px;
}

.contact-info p{
  font-size: 14px;
  line-height: 1.8;
  color: #374151;
}


/* CENTER FIX */
.center-logo-main{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.center-logo-main h1{
  font-size: 30px;
  color: #0094D9;
  font-weight: 800;
  line-height: 1;
}

.center-logo-main h1 span{
  color: #111827;
}

.center-logo-main h2{
  letter-spacing: 8px;
  font-size: 15px;
  margin-top: 5px;
}

/* RIGHT */

.header-right-icons{
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-icon{
  position: relative;
  font-size: 22px;
  color: #111827;
  text-decoration: none;
}

.cart-icon span{
  position: absolute;
  top: -12px;
  right: -12px;

  width: 22px;
  height: 22px;

  background: #0094D9;
  color: white;

  border-radius: 50%;

  font-size: 11px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* NAVBAR */
.main-navbar {
  background: white;
  height: 45px;
  border-bottom: 1px solid #e5e7eb;
}

.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  height: 50px;
}

.nav-center a {
  text-decoration: none;
  color: #0f172a;
  font-weight: 600;
  font-size: 14px;
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.section-title p {
  color: #64748b;
}













/* Not: YAHA SE COMPANIES+LOGO HE START */
.brands { padding: 40px 0; }

.brands-wrapper {
  width: 100%;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}

/* LEFT BADGE */
.trusted-text {
  font-weight: 600;
  color: #000;
  background: #fff;
  padding: 14px 25px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* VIEWPORT */
.brand-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
}

/* SINGLE LIST */
.brand-list {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* ITEM */
.brand-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
}

/* ICON */
.brand-list i {
  font-size: 18px;
}

/* BRAND COLORS */
.google { color: #4285F4; }
.microsoft { color: #f25022; }
.meta { color: #1877f2; }
.fiverr { color: #1dbf73; }
.upwork { color: #000; }
.linkedin { color: #0a66c2; }
.github { color: #000; }
.stackoverflow { color: #f48024; }
.coursera { color: #0056d2; }
.udemy { color: #a435f0; }
.skillshare { color: #00a862; }
.adobe { color: #ff0000; }
.cisco { color: #1ba0d7; }
.infosys { color: #0066cc; }
.canva { color: #00c4cc; }
.zoom { color: #2d8cff; }
.wipro { color: #6a1b9a; }

/* ANIMATION */
@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
/* YAHA END HE */







/* FEATURES */
.features {
  padding: 100px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 40px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
}

.feature-card p {
  color: #64748b;
  line-height: 1.7;
}


.reviews{
  padding: 70px 0;
  background: #f3f4f6;
}

/* HEADER */
.review-header{
  text-align:center;
  margin-bottom:60px;
}

.review-header h2{
  font-size:44px;
  font-weight:900;
  color:#0f172a;
}

.review-header p{
  color:#64748b;
  margin-top:10px;
}

/* GRID (FLEX FOR PX CONTROL) */
.review-grid{
  display:flex;
  flex-wrap:wrap;
  gap:25px;
  justify-content:center;
}

/* ⭐ PREMIUM CARD (FULL PX CONTROL) */
.review-card{
  width: 272px;        /* WIDTH CONTROL */
  height: 380px;       /* HEIGHT CONTROL */

  padding: 35px;       /* INNER SPACE */

  background: #fff;
  border-radius: 12px;

    display: flex;
  flex-direction: column;
  justify-content: flex-start;  /* ❌ space-between hatao */
  gap: 20px; 
}

/* USER */
.user{
  display:flex;
  align-items:center;
  gap:12px;
}

.user img{
  width:60px;
  height:60px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid #e5e7eb;
}

.user h4{
  font-size:16px;
  font-weight:800;
  margin:0;
}

.user span{
  font-size:13px;
  color:#64748b;
}

/* STARS */
.stars{
  color:#fbbf24;
  font-size:15px;
  margin:12px 0;
}

/* REVIEW TEXT */
.review-card p{
  font-size:14px;
  color:#475569;
  line-height:1.6;
}

/* META */
.meta{
  display:flex;
  justify-content:space-between;
  font-size:12px;
  color:#64748b;

  border-top:1px solid #f1f5f9;
  padding-top:12px;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .review-card{
    width: 100%;
    height: auto;
  }
}

.cta-simple{
  padding: 70px 0;
  background: #f8fafc;
}

.cta-box{
  background: linear-gradient(135deg, #ffffff, #f3f4f6);
  padding: 50px;
  border-radius: 15px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  color:white;

  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}

.cta-content h2{
  font-size:32px;
  font-weight:800;
  margin-bottom:10px;
  color: #333;
}

.cta-content p{
  font-size:14px;
  color:#222;
  line-height:1.7;
  max-width:650px;
  font-weight: 500;
}

.cta-btn{
  background:#0094D9;
  color:white;
  padding:14px 32px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
}

.cta-btn:hover{
  background:#0077aa;
  transform:translateY(-4px);
  box-shadow:0 15px 30px rgba(0,148,217,0.25);
}

@media(max-width:768px){
  .cta-box{
    flex-direction:column;
    text-align:center;
    gap:20px;
  }

  .cta-content p{
    max-width:100%;
  }
}


/* FOOTER */
.footer {
  background: #f2f3f5;
  color: white;
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
  color: #000;
}

.footer h4,
.footer h3 {
  margin-bottom: 20px;
  color: #000;
}

.footer a {
  display: block;
  text-decoration: none;
  color: #000;
  margin-bottom: 12px;
}

.footer p {
  color: #000;
  line-height: 1.8;
}

.newsletter {
  display: flex;
  margin-top: 20px;
}

.newsletter input {
  width: 100%;
  padding: 12px;
  border: none;
  outline: none;
}

.newsletter button {
  background: #2563eb;
  border: none;
  color: white;
  padding: 0 20px;
}

.copyright {
  text-align: center;
  margin-top: 60px;
  padding: 25px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #94a3b8;
}

/* RESPONSIVE */
@media(max-width: 992px) {

  .hero-grid,
  .feature-grid,
  .course-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .cta-box {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

}

.strip-links {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.strip-links span {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.heroSwiper {
  width: 100%;
  height: 100%;
}

.heroSwiper .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  color: white;
}

/* Note: Yaha se Hedo picture he satrt*/
.slide1{
  background:
  linear-gradient(
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.45)
  ),
  url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=2600&auto=format&fit=crop')
  center center/cover no-repeat;
}

.slide2{
  background:
  linear-gradient(
    rgba(0,0,0,0.50),
    rgba(0,0,0,0.50)
  ),
  url('https://images.unsplash.com/photo-1552664730-d307ca884978?q=80&w=2600&auto=format&fit=crop')
  center center/cover no-repeat;
}

.hero-banner{
  width:100%;
  height:600px;
  overflow:hidden;
  position:relative;
  display:flex;
  align-items:center;
}

/* OVERLAY SAME */
.overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    to right,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.20),
    rgba(0,0,0,0.55)
  );
}

/* HERO CONTENT */
.hero-content{
  position:relative;
  z-index:2;
  padding-top:25px;
}

/* TAG */
.tag{
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(12px);
  color:#fff;
  border:1px solid rgba(255,255,255,0.2);
  padding:9px 20px;
  border-radius:60px;
  font-size:14px;
  font-weight:600;
}

/* HEADING (THORA BARA AGAIN) */
.hero-content h1{
  font-size:60px;   /* increased from 64px */
  line-height:1.1;
  font-weight:800;
  max-width:900px;
  margin:18px 0;
  color:#fff;
  letter-spacing:-1px;
}

/* PARAGRAPH */
.hero-content p{
  font-size:16px;
  line-height:1.8;
  color:#f1f5f9;
  max-width:740px;
  margin-bottom:28px;
}

/* BUTTONS */
.hero-buttons{
  display:flex;
  gap:16px;
  margin-bottom:35px;
}

.primary-btn{
  background:#d71920;
  color:#fff;
  padding:14px 30px;   /* slightly bigger */
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  font-size:15px;
}
.primary-btn:hover{
  background: #b9151b;
}

.secondary-btn{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  transition: 0.3s ease;
  color:white;
  padding:14px 30px;
  border-radius:12px;
  text-decoration:none;
  font-weight:500;
}
.secondary-btn:hover{
  background: #d71920;
  border-color: #d71920;
  color: #fff;
}

/* STATS (THORA BARA AGAIN) */
.stats{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-top:12px;
}

.stats div{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  backdrop-filter:blur(14px);
  padding:18px 24px;
  border-radius:18px;
  min-width:140px;
}

.stats h2{
  color:#fff;
  font-size:28px;   /* increased */
  margin-bottom:4px;
}

.stats span{
  color:#dbeafe;
  font-size:14px;
}

/* SWIPER */
.swiper-pagination-bullet{
  background:#fff !important;
  opacity:0.7;
}

.swiper-pagination-bullet-active{
  background:#d71920 !important;
  opacity:1;
  width:28px;
  border-radius:20px;
}
/* YAHA END HE */


/* Note: YEH HE T-COMPANIES ka section */

.trusted-section {
  padding: 90px 0;
}

.premium-trusted{
  padding: 20px 0;
  background: transparent;
}

/* MAIN WIDE BOX */
.premium-trusted .container{
  width: 98%;
  max-width: 1400px;

  background: #f2f3f5;
  border: 1px solid #999;
  border-radius: 20px;

  padding: 60px 50px;

  position: relative;
  overflow: hidden;

  

  margin-top: 5px;   /* almost top touch */
}

/* BLUE GLOW EFFECT */
.premium-trusted .container::before,
.premium-trusted .container::after{
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: #3b82f6;
  filter: blur(120px);
  opacity: 0.15;
  border-radius: 50%;
  z-index: 0;
}

.premium-trusted .container::before{
  top: -80px;
  left: -80px;
}

.premium-trusted .container::after{
  bottom: -80px;
  right: -80px;
}

/* CONTENT ABOVE EFFECT */
.premium-trusted .container > *{
  position: relative;
  z-index: 2;
}

/* HEADER */
.premium-header{
  text-align: center;
  margin-bottom: 50px;
}

.badge{
  display: inline-block;
  padding: 8px 18px;
  background: #dbeafe;
  border:1px solid #f2f2f2;
  color: #1d4ed8;
  font-size: 12px;
  border-radius: 50px;
  margin-bottom: 15px;
  font-weight: 600;
}

.budge{
  display: inline-block;
  padding: 8px 18px;
  background: #000;
  border:1px solid #f2f2f2;
  color: #fff;
  font-size: 12px;
  border-radius: 40px;
  margin-bottom: 15px;
  font-weight: 600;
}

.premium-header h2{
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
}

.premium-header p{
  color: #475569;
  margin-top: 10px;
  font-size: 16px;
}

/* GRID */
.company-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.company{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(59,130,246,0.2);

  padding: 18px;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-weight: 600;
  color: #0f172a;

  transition: 0.3s ease;
}

/* HOVER */
.company:hover{
  transform: translateY(-5px);
  border-color: #3b82f6;
  box-shadow: 0 12px 25px rgba(59,130,246,0.15);
}

/* ICON */
.company i{
  color: #2563eb;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .company-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
/* YAHA END HE  */


/* Note: YAHA SE WHY CHOSE US SECTION START HE */
body{
  font-family: 'Poppins', sans-serif;
  background:#ffffff;
  color:#0f172a;
}

/* SECTION */
.why-premium{
  padding:120px 0;
  position:relative;
}

/* HEADER */
.why-head{
  text-align:center;
  margin-bottom:70px;
}

.why-head span{
  font-size:12px;
  letter-spacing:3px;
  color:#64748b;
  text-transform:uppercase;
}

.why-head h2{
  font-size:46px;
  font-weight:800;
  margin:15px 0;
}

.why-head p{
  color:#64748b;
  font-size:15px;
}

/* GRID */
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* CARD (ULTRA CLEAN PREMIUM STYLE) */
.why-card{
  padding:40px;
  border:1px solid rgba(15,23,42,0.08);
  border-radius:18px;
  background:#fff;

  transition:0.4s ease;
  position:relative;
}

/* LUXURY HOVER LINE */
.why-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:0%;
  height:2px;
  background:#0f172a;
  transition:0.4s;
}

.why-card:hover::before{
  width:100%;
}

.why-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* TEXT */
.why-card h3{
  font-size:18px;
  margin-bottom:10px;
}

.why-card p{
  color:#64748b;
  line-height:1.6;
  font-size:14px;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .why-grid{
    grid-template-columns:1fr;
  }

  .why-head h2{
    font-size:32px;
  }
}

.why-premium{
  padding-top:70px;   /* pehle 110px tha */
  padding-bottom:90px;
  margin-top:-20px;   /* section ko thora upar pull karega */
}

/* HEADER */
.why-head{
  text-align:center;
  margin-bottom:55px;
}

.why-head span{
  font-size:11px;
  letter-spacing:3px;
  color:#64748b;
  font-weight:600;
}

.why-head h2{
  font-size:33px;
  font-weight:800;
  margin:10px 0;
  color:#0f172a;
}

.why-head p{
  color:#64748b;
  font-size:14px;
}

/* GRID */
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

/* CARD */
.why-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:25px;
  border:1px solid rgba(15, 23, 42, 0.18);
  transition:0.25s ease;
}

.why-card{
  position:relative;
  overflow:hidden;
  border-radius:14px;
  border:1px solid rgba(15,23,42,0.18);
  cursor:defaultr;
}


.why-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 35px rgba(0,0,0,0.08);
}

/* ICON */
.icon{
  width:48px;
  height:48px;
  background:#f1f5f9;
  border-radius:12px;

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:16px;
}

.icon span{
  font-size:24px;
  color:#0f172a;
}

/* TEXT */
.why-card h3{
  font-size:16px;
  font-weight:700;
  margin-bottom:6px;
}

.why-card p{
  font-size:13.5px;
  color:#64748b;
  line-height:1.6;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .why-grid{
    grid-template-columns:1fr;
  }

  .why-head h2{
    font-size:28px;
  }
}
/* YAHA END HE  */














































body{
  font-family: 'Inter', sans-serif;
  background:#f7f9fa;
  color:#1c1d1f;
  -webkit-font-smoothing: antialiased;
}

/* SECTION */
.udemy-courses{
  padding: 90px 0;
}

/* =========================
   HEADER
========================= */

.ud-header{
  text-align:center;
  margin-bottom:55px;
}

/* TOP TRUSTED LINE */
.top-line-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;

  margin-bottom:28px;

  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  color:#111827;
}

/* LEFT RIGHT LINES */
.top-line-title span{
  width:350px;
  height:1.5px;
  background:#d1d5db;
  display:block;
}

/* MAIN HEADING */
.ud-header h2{
  font-size:48px;
  font-weight:800;
  color:#111827;
  line-height:1.15;
  letter-spacing:-1px;
  margin-bottom:14px;
}

/* PARAGRAPH */
.ud-header p{
  color:#6b7280;
  font-size:17px;
  font-weight:400;
}

/* =========================
   GRID
========================= */

.ud-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:24px;
}

/* =========================
   CARD
========================= */

.ud-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:6px;
  overflow:hidden;
  transition:0.3s ease;
  display:flex;
  flex-direction:column;
  min-height:480px;
}

.ud-card:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

/* IMAGE */
.ud-img{
  position:relative;
  height:200px;
  overflow:hidden;
}

.ud-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s ease;
}

.ud-card:hover .ud-img img{
  transform:scale(1.06);
}

/* BADGE */
.badge{
  position:absolute;
  top:12px;
  left:12px;
  background:#111827;
  color:#fff;
  font-size:11px;
  padding:5px 10px;
  font-weight:600;
  border-radius:6px;
}

/* BODY */
.ud-body{
  padding:18px;
  display:flex;
  flex-direction:column;
  flex:1;
}

/* TITLE */
.ud-body h3{
  font-size:15px;
  font-weight:700;
  margin-bottom:6px;
  line-height:1.4;
}

/* DESCRIPTION */
.desc{
  font-size:13px;
  color:#6b7280;
  margin-bottom:12px;
  line-height:1.6;
  min-height:40px;
}

/* META */
.meta{
  display:flex;
  justify-content:space-between;
  font-size:12px;
  color:#6b7280;
  margin-bottom:10px;
}

/* RATING */
.rating{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  margin-bottom:14px;
}

.rating span{
  font-weight:700;
  color:#111827;
}

/* STARS */
.rating i{
  color:#fbbf24;
  font-size:13px;
}

/* BOTTOM */
.bottom-row{
  margin-top:auto;
  display:flex;
  flex-direction:column;
  gap:10px;
  padding-top:14px;
  border-top:1px solid #f1f5f9;
}

/* PRICE */
.bottom-row strong{
  font-size:18px;
  font-weight:900;
  color:#111827;
}

/* BUTTON */
.bottom-row a{
  background:#0094D9;
  color:#fff;
  padding:12px 16px;
  font-size:13px;
  text-decoration:none;
  font-weight:700;
  border-radius:3px;
  text-align:center;
  width:100%;
  display:block;
  transition:0.3s ease;
}

/* HOVER */
.bottom-row a:hover{
  background:#008ac8; 
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

  .ud-grid{
    grid-template-columns:1fr;
  }

  .ud-header h2{
    font-size:32px;
  }

  .top-line-title span{
    width:70px;
  }

  .ud-header p{
    font-size:14px;
  }

}







































/* ================= FOOTER BASE ================= */
.footer{
  background:#f2f3f5;
  color:#e2e8f0;
  padding:60px 20px 20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:30px;
  max-width:1200px;
  margin:auto;
  align-items:start;
  text-align:left;
}

/* ================= BRAND ================= */
.footer-grid h3{
  font-size:20px;
  margin-bottom:10px;
  color:#222;
}

.footer-grid p{
  font-size:14px;
  color:#222;
  line-height:1.6;
}

/* ================= HEADINGS ================= */
.footer-grid h4{
  font-size:16px;
  margin-bottom:12px;
  color:#222;
}

/* ================= LINKS ================= */
.footer-grid a{
  display:block;
  color:#222;
  text-decoration:none;
  font-size:14px;
  margin-bottom:8px;
  transition:0.3s;
}

.footer-grid a:hover{
  color:#0094D9;
  transform:translateX(4px);
}

/* ============ PREMIUM NEWSLETTER (ULTRA COMPACT) ============ */
.premium-newsletter{
  width:100%;
  font-family:inherit;
}

/* TEXT */
.newsletter-head{
  margin-bottom:8px;
}

.newsletter-head span{
  display:block;
  font-size:8px;
  font-weight:700;
  letter-spacing:1.2px;
  color:#64748b;
  margin-bottom:4px;
}

.newsletter-head h4{
  font-size:14px;
  line-height:1.2;
  color:#111827;
  font-weight:700;
  margin-bottom:4px;
}

.newsletter-head p{
  font-size:11px;
  line-height:1.4;
  color:#6b7280;
}

/* MAIN BOX */
.newsletter-wrap{
  display:flex;
  align-items:center;
  width:100%;
  height:42px;
  border:1.5px solid #007FB8;
  border-radius:12px;
  overflow:hidden;
  background:#fff;
}

/* INPUT */
.newsletter-wrap input{
  flex:1;
  height:100%;
  border:none;
  outline:none;
  padding:0 12px;
  font-size:13px;
  font-weight:500;
  color:#444;
}

/* BUTTON */
.newsletter-wrap button{
  width:100px;
  height:100%;
  border:none;
  background:#0094D9;
  color:#fff;
  font-size:11px;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
}

/* HOVER */
.newsletter-wrap button:hover{
  background:#007FB8;
}

/* MOBILE */
@media(max-width:768px){
  .newsletter-wrap{
    height:38px;
  }

  .newsletter-wrap button{
    width:80px;
    font-size:10px;
  }

  .newsletter-head h4{
    font-size:13px;
  }

  .newsletter-head p{
    font-size:10px;
  }
}

/* ================= COPYRIGHT ================= */
.copyright{
  text-align:center;
  margin-top:40px;
  padding-top:15px;
  border-top:1px solid #1e293b;
  font-size:13px;
  color:#111;
}


/* WHY CHOOSE US LINE STYLE */
.why-lines{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;

  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  color:#111827;
  margin-bottom:15px;
}

/* LEFT RIGHT LINES */
.why-lines span{
  width:120px;
  height:1.5px;
  background:#d1d5db;
  display:block;
}




.premium-trusted{
  margin-bottom: 50px;
}







































/* DROPDOWN BASE */
.dropdown{
  position: relative;
  display: inline-block;
}

/* BUTTON */
.dropbtn{
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 13px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* MENU BOX */
.dropdown-menu{
  position: absolute;
  top: 100%;
  left: 0;

  width: 240px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);

  padding: 5px 0;

  opacity: 0;
  visibility: hidden;
  transform: translateY(7px);
  transition: 0.2s ease;
  z-index: 999;

  overflow: hidden;   /* 🔥 FIX: prevents sharp hover corners */
}

/* SHOW */
.dropdown:hover .dropdown-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ITEMS */
.dropdown-menu a{
  display: flex;
  align-items: center;
  gap: 9px;

  padding: 9px 13px;
  font-size: 13.5px;
  color: #1e293b;
  text-decoration: none;
  transition: 0.15s ease;

  position: relative;
}

/* ICON */
.dropdown-menu a i{
  width: 17px;
  font-size: 14px;
  text-align: center;
}

/* SEPARATOR */
.dropdown-menu a:not(:last-child)::after{
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 0;
  height: 1px;
  background: #e2e8f0;
  opacity: 0.25;
}

/* HOVER */
.dropdown-menu a:hover{
  background: #f1f5f9;
  color: #2563eb;
}

/* ICON HOVER */
.dropdown-menu a:hover i{
  color: #2563eb;
}

/* RIGHT ARROW */
.right{
  margin-left: auto;
  font-size: 11px;
  opacity: 0.6;
}