:root {
  --brand-blue: #2f6fe4;     
  --brand-orange: #f28c28;   
  --brand-dark: #0b1320;     
  --brand-light: #f5f9ff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(circle at top left, #12254a, #0b1320 60%);
  color: #eaf0ff;
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  padding-top: 90px; /* navbar height */
}


/* ================= SECTIONS ================= */
section {
  padding: 60px 0;
}

.bg-light {
  background: radial-gradient(circle at top, #12254a, #1b2f5a) !important;
}



/* ================= NAVBAR ================= */

.navbar .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  opacity: 0.9;
}

.navbar .nav-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.navbar .btn-warning {
  background: #ffffff;
  color: #111 !important;
  border-radius: 30px;
  padding: 8px 18px;
  font-weight: 600;
}

/* Logo circle */
/* Logo circle */
.logo-wrap {
  background: #ffffff;
  border-radius: 50%;
  padding: 12px;   /* 12px nundi 18px chesanu */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.logo-wrap img {
  height: 48px;   /* 48px nundi 60px chesanu */
  width: auto;
  display: block;
}


/* ================= HERO ================= */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  background: url("../images/header.png") no-repeat center center / cover;
}

/* Dark Premium Overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(11,19,32,0.65) 30%,
      rgba(11,19,32,0.45) 60%,
      rgba(11,19,32,0.35) 100%
  );
  z-index: 1;
}


/* Content above overlay */
.hero .container {
  position: relative;
  z-index: 2;
}


.hero h1 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #ffffff;
}

.hero p {
  color: #dcdcdc;
  max-width: 520px;
}

/* Gold typing text with black shadow */
#typing-text {
  color: #f5c16c !important;                 
  -webkit-text-fill-color: #f5c16c !important;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.9);   
  border-right: 3px solid #f5c16c;           
  padding-right: 6px;
  font-weight: 900;
}

/* ================= BUTTONS ================= */
.btn-primary,
.btn-warning {
  background: linear-gradient(135deg, var(--brand-orange), #ff6a00);
  border: none;
  color: #fff !important;
  border-radius: 30px;
  padding: 10px 22px;
  box-shadow: 0 8px 22px rgba(242,140,40,0.45);
  transition: 0.3s ease;
}

.btn-primary:hover,
.btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(242,140,40,0.65);
}



/* ================= TITLES ================= */
.section-title,
.what-we-do-title {
  font-size: 2.6rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 15px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.what-we-do-desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  color: #cfd9ff;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ================= CARDS ================= */
.card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transition: 0.3s ease;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 70px rgba(0,0,0,0.8);
}

/* ================= WHAT WE DO ================= */
.what-we-do-section {
  padding: 40px 0;
  background: radial-gradient(circle at top, #12254a, #0b1320 70%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.what-we-do-section .service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  height: 100%;
  transition: 0.3s ease;
  backdrop-filter: blur(12px);
}

.what-we-do-section .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  border-color: rgba(242,140,40,0.6);
}

.what-we-do-section .service-card h4 {
  margin-top: 15px;
  font-weight: 700;
  color: #fff;
}

.what-we-do-section .service-card p {
  color: #cfd9ff;
  font-size: 0.95rem;
  line-height: 1.6;
}

.what-we-do-section .service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}



.about-stats {
  padding: 60px 0;
  background: linear-gradient(135deg, #0f1c36, #14254d);
  color: #ffffff;
}

.stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 25px 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}


/* Mobile menu panel */
@media (max-width: 991px) {
  .mobile-nav {
    background: linear-gradient(160deg, #0b1320, #0d1b3d);
    padding: 20px;
    border-radius: 16px;
    margin-top: 10px;
    animation: slideDown 0.3s ease-in-out;
  }

  .mobile-nav .nav-link {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .mobile-nav .nav-link:last-child {
    border-bottom: none;
  }
}

/* Smooth animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Toggler icon polish */
.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

.about-info-section {
  background: radial-gradient(1200px 400px at 20% 10%, #1b2b5c 0%, transparent 60%),
              linear-gradient(135deg, #0b1320, #0d1b3d);
  padding: 90px 0;
}


.info-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 26px;
  color: #fff;
  height: 100%;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35),
              inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

.info-card h5 {
  font-weight: 600;
  margin-top: 10px;
}

.info-card .icon {
  font-size: 20px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .about-info-section {
    padding: 60px 0;
  }

  .info-card {
    border-radius: 16px;
    padding: 22px 20px;
  }
}

/* Transparent Navbar */
/* Premium Transparent Gradient Navbar */
.custom-navbar {
    background: linear-gradient(90deg, 
        rgba(47,111,228,0.85), 
        rgba(242,140,40,0.85)
    ) !important;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition: all 0.4s ease;
    padding: 10px 0;
}

.custom-navbar.scrolled {
    background: linear-gradient(90deg, 
        rgba(47,111,228,0.85), 
        rgba(242,140,40,0.85)
    ) !important;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition: all 0.4s ease;
    padding: 10px 0;
}



.navbar {
    min-height: 65px;
}

/* ================= WHY SECTIONS FULL WIDTH ================= */
.why-section {
  padding: 40px 0;
  width: 100%;
}

.why-container {
  display: flex;
  align-items: center;
  gap: 60px;            /* more space between image & text */
  flex-wrap: wrap;
  max-width: 1200px;     /* limits content width */
  margin: 0 auto;        /* centers the container */
  padding: 0 20px;       /* side padding for smaller screens */
}

.why-container .why-image,
.why-container .why-content {
  flex: 1 1 500px;       /* stretch evenly, min width 500px */
}

/* images stretch fully */
.why-container .why-image img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

/* text styling */
.why-container .why-content h2 {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 25px;
  color: var(--brand-dark);
  animation: fadeInLeft 1s ease forwards;
}

.why-container .why-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  animation: fadeInLeft 1.2s ease forwards;
}

/* button styling */
.why-container .why-content .why-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-orange));
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  animation: fadeInLeft 1.4s ease forwards;
}

.why-container .why-content .why-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
  background: linear-gradient(135deg, #004aad, #ff7f2f);
}

/* Features list */
.why-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.why-features li {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #000;          /* solid black text */
  font-weight: 600;
}

/* Optional: add emoji spacing */
.why-features li::before {
  content: '';
  display: inline-block;
  width: 6px;
}


/* FIRST SECTION - LIGHT GRAY */
.why-section.first {
  background-color: #f9f9f9;
}

/* SECOND SECTION - WHITE WITH IMAGE ON RIGHT */
.why-section.second {
  background-color: #ffffff;
}

.why-section.second .why-container {
  flex-direction: row-reverse;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .why-container {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .why-container {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .why-container {
    flex-direction: column !important;
    text-align: center;
  }

  .why-container .why-content,
  .why-container .why-image {
    min-width: 100%;
  }

  .why-container .why-content h2 {
    font-size: 2rem;
  }

  .why-container .why-content p {
    font-size: 1rem;
  }
}

/* Gradient headings for why-sections */
.why-section .why-content h2 {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 25px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback */
  letter-spacing: 1px;
}

.why-section .why-content h2 {
  font-family: "Poppins", "Montserrat", sans-serif;
}

.why-section.first .why-content h2,
.why-section.second .why-content h2 {
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.all-india-coverage {
  padding: 80px 0;
  background: #f5f9ff;
}

.flex-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.flex-container .image {
  flex: 1;
}

.flex-container .image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.flex-container .text {
  flex: 1;
}

.flex-container .text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #2f6fe4, #f28c28);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.flex-container .text p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
}

.flex-container .text ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #555;
  margin-bottom: 20px;
}

.flex-container .text ul li {
  margin-bottom: 12px;
}

.section-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #2f6fe4, #f28c28);
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.section-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
  background: linear-gradient(135deg, #004aad, #ff7f2f);
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .flex-container {
    flex-direction: column;
    text-align: center;
  }

  .flex-container .text ul {
    padding-left: 0;
    text-align: center;
  }

  .flex-container .image img {
    max-width: 100%;
    margin-bottom: 20px;
  }
}


/* Custom Section Theme (based on All India Coverage) */
.custom-section {
  padding: 40px 0;
  background: #f5f9ff; /* same light premium background */
}

.custom-section .flex-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.custom-section .image,
.custom-section .text {
  flex: 1;
  min-width: 300px;
}

.custom-section .image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.custom-section .image img:hover {
  transform: translateY(-5px);
}

.custom-section .text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1); /* subtle depth like All India */
  font-family: "Poppins", "Montserrat", sans-serif; /* same as All India */
}

.custom-section .text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

.custom-section .text ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #555;
  margin-bottom: 20px;
}

.custom-section .text ul li {
  margin-bottom: 12px;
}

.custom-section .section-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-orange));
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.custom-section .section-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
  background: linear-gradient(135deg, #004aad, #ff7f2f);
}

/* Reverse Image/Text for alternating sections */
.custom-section.reverse .flex-container {
  flex-direction: row-reverse;
}

/* Responsive */
@media (max-width: 768px) {
  .custom-section .flex-container {
    flex-direction: column;
    text-align: center;
  }
  
  .custom-section .text ul {
    padding-left: 0;
    text-align: center;
  }

  .custom-section .image img {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

/* OUR STORY same style as All India */
.our-story {
    background: #fff0f5; /* Super soft light baby pink */
    padding: 80px 20px;
    position: relative;
}


.our-story .flex-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.our-story .image,
.our-story .text {
  flex: 1;
  min-width: 300px;
}

.our-story .image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.our-story .image img:hover {
  transform: translateY(-5px);
}


.our-story .text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

.our-story .text ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #555;
  margin-bottom: 20px;
}

.our-story .text ul li {
  margin-bottom: 12px;
}

.our-story .section-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-orange));
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.our-story .section-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
  background: linear-gradient(135deg, #004aad, #ff7f2f);
}

/* Reverse layout if needed */
.our-story.reverse .flex-container {
  flex-direction: row-reverse;
}

/* ===== OUR STORY FIX ALIGNMENT ===== */

.our-story .container {
  max-width: 1200px;
  margin: 0 auto;
}

.our-story .flex-container {
  max-width: 1200px;
  margin: 0 auto;
}

.our-story .image img {
  width: 100%;
  height: auto;
  display: block;
}

.our-story .text {
  padding-right: 10px;
}

/* Mobile fix */
@media (max-width: 768px) {
  .our-story {
    padding: 60px 15px;
  }

  .our-story .flex-container {
    text-align: center;
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .our-story .flex-container {
    flex-direction: column;
    text-align: center;
  }

  .our-story .text ul {
    padding-left: 0;
    text-align: center;
  }

  .our-story .image img {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

/* ================= ANIMATION FOR IMAGES ================= */
.animate-img {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
    will-change: transform, opacity;
}

.animate-img.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover zoom for premium feel */
.animate-img img {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    border-radius: 20px;
}

.animate-img img:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* ================= SERVICES SECTION ================= */

.services-section {
  padding: 40px 0;
  background: #f8fbff;
}

/* Service Card */
.service-card {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Bigger Image */
.service-card img {
  width: 100%;
  max-width: 260px;
  margin: 0 auto 25px;
  display: block;
}

/* Heading */
.service-card h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.9;  /* Line gap increase */
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Content */
.service-card p {
  color: #111;
  font-size: 15px;
  line-height: 1.8;
}

/* Hover */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* ===== Services Box Gap Fix ===== */

.services-section .row {
  row-gap: 35px;      /* vertical gap between boxes */
  column-gap: 0px;   /* horizontal gap between boxes */
}

.service-card {
  margin: 0;
}

/* Container for boxes/cards */
.box-container {
  display: flex;
  flex-wrap: wrap;      /* allows boxes to move to next line on small screens */
  gap: 20px;            /* space between boxes */
  justify-content: center; /* centers boxes horizontally */
  margin: 0 auto;       /* optional, centers the whole container */
}

/* Individual boxes/cards */
.box-container .box {
  flex: 1 1 250px;      /* responsive width */
  min-width: 250px;     /* prevents shrinking too small */
  background: #fff;     /* optional: box background */
  padding: 20px;        /* inner spacing inside each box */
  border-radius: 10px;  /* rounded corners, optional */
  box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* subtle shadow */
}

/* Mobile specific adjustments */
@media (max-width: 480px) {
  .box-container {
    gap: 15px;          /* slightly smaller gap on very small screens */
  }
}

.featured-project {
  padding: 40px 20px;
  background: #f8fdf9; /* Lite Green */
}

/* Heading */
.featured-project h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0b1320;
}

.blue-text {
  color: #2f6fe4;
}

.gradient-text {
  background: linear-gradient(90deg, #2f6fe4, #f28c28);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.project-content h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #0b1320;
}

.project-content p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Highlights */
.project-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.project-highlights li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #0b1320;
}

/* Image */
.project-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

/* Button */
.theme-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(90deg, #2f6fe4, #f28c28);
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.theme-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 992px) {
  .featured-project {
    text-align: center;
  }

  .project-image {
    margin-top: 40px;
  }
}
/* Scroll wrapper */
.scroll-wrapper {
  overflow: hidden;
  width: 100%;
}

/* Scroll content flex */
.scroll-content {
  display: flex;
  gap: 25px;
  animation: scroll-left 25s linear infinite;
}

/* ================= INDUSTRIES AUTO SCROLL ================= */

.industries-auto-scroll {
  padding: 40px 0;
  background: #f9eef1;
  overflow: hidden;
}

/* ===== HEADING ===== */

.industry-heading-box {
  text-align: center;
  margin-bottom: 70px;
}

.industry-heading-box h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--brand-blue);
}

.industry-heading-box p {
  color: #555;
  font-size: 18px;
  line-height: 1.6;
}

/* ===== SCROLL SYSTEM ===== */

.scroll-wrapper {
  overflow: hidden;
  width: 100%;
}

.scroll-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: seamlessScroll 45s linear infinite;
}

.scroll-wrapper:hover .scroll-track {
  animation-play-state: paused;
}

/* ===== INDUSTRY CARD ===== */

.industry-card {
  min-width: 240px;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  flex-shrink: 0;
  transition: 0.35s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* Light Card Colors */

.industry-card:nth-child(5n+1) { background: #ffffff; }
.industry-card:nth-child(5n+2) { background: #f3f8ff; }
.industry-card:nth-child(5n+3) { background: #fff7ed; }
.industry-card:nth-child(5n+4) { background: #f0fff7; }
.industry-card:nth-child(5n+5) { background: #fef6fb; }

/* ===== ICON (THEME GRADIENT BACKGROUND) ===== */

.icon-box {
  width: 85px;
  height: 85px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
}

/* Gradient Icon Background */

.industry-card:nth-child(5n+1) .icon-box {
  background: linear-gradient(135deg, #2f6fe4, #4f8cff);
}

.industry-card:nth-child(5n+2) .icon-box {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.industry-card:nth-child(5n+3) .icon-box {
  background: linear-gradient(135deg, #f28c28, #ffb067);
}

.industry-card:nth-child(5n+4) .icon-box {
  background: linear-gradient(135deg, #00b894, #55efc4);
}

.industry-card:nth-child(5n+5) .icon-box {
  background: linear-gradient(135deg, #e84393, #fd79a8);
}

.icon-box i {
  font-size: 30px;
  color: #ffffff;
}

/* ===== CARD TEXT (THEME COLOR) ===== */

.industry-card h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--brand-blue);
}

.industry-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== HOVER ===== */

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.industry-card:hover .icon-box {
  transform: scale(1.1) rotate(6deg);
}

/* ===== ANIMATION ===== */

@keyframes seamlessScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {

  .industry-card {
    min-width: 200px;
  }

  .icon-box {
    width: 70px;
    height: 70px;
  }

  .icon-box i {
    font-size: 24px;
  }
}

/* ===============================
   PROCESS SECTION DARK THEME
================================ */

.process-section {
  padding: 40px 0;
  background: #0b1320;
  position: relative;
  overflow: hidden;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
}

.section-title p {
  color: #a0aec0;
  font-size: 16px;
  margin-bottom: 60px;
}

/* ===============================
   TIMELINE STRUCTURE
================================ */

.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #2f6fe4, #f28c28);
  transform: translateX(-50%);
}

/* ===============================
   TIMELINE ITEM
================================ */

.timeline-item {
  position: relative;
  width: 50%;
  padding: 30px 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

/* LEFT SIDE */
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

/* RIGHT SIDE */
.timeline-item:nth-child(even) {
  left: 50%;
}

/* Animation active */
.timeline-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   ICON STYLE (NEW PREMIUM LOOK)
================================ */

.timeline-icon {
  position: absolute;
  top: 35px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f6fe4, #f28c28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 0 20px rgba(47,111,228,0.6);
  z-index: 2;
}

/* Icon positioning */
.timeline-item:nth-child(odd) .timeline-icon {
  right: -32px;
}

.timeline-item:nth-child(even) .timeline-icon {
  left: -32px;
}

/* ===============================
   CONTENT CARD
================================ */

.timeline-content {
  background: #111c2e;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: 0.4s ease;
}

.timeline-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2f6fe4;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 15px;
  color: #cbd5e1;
}

/* Hover effect */
.timeline-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 20px;
    text-align: left !important;
  }

  .timeline-item:nth-child(even),
  .timeline-item:nth-child(odd) {
    left: 0;
  }

  .timeline-icon {
    left: -2px !important;
  }
}

/* ================= TESTIMONIALS SECTION ================= */

.testimonials-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #f5f9ff, #eef4ff);
  position: relative;
}

/* ===== HEADING ===== */
.section-header {
  text-align: center;
  margin-bottom: 70px; /* spacing like Industries section */
}

.section-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;

  /* Gradient Text */
  background: linear-gradient(135deg, #2f6fe4, #f28c28);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section-header p {
  color: #555;           /* subtle subheading color */
  font-size: 18px;
  line-height: 1.6;
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonials-wrapper {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Glass Card */
.testimonial-card {
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(47, 111, 228, 0.2);
}

/* ===== CLIENT INFO ===== */
.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.client-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f6fe4, #f28c28);
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.client-info h4 {
  margin: 0;
  font-size: 18px;
  color: #0b1320;
}

.client-info span {
  font-size: 14px;
  color: #6c757d;
}

.testimonial-card p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 14px;
  }
}

/* ================= WHY CHOOSE US SECTION ================= */
.why-choose-us {
  padding: 40px 0;
  background: linear-gradient(135deg, #f5f9ff, #eef4ff);
  position: relative;
}

/* ===== HEADING ===== */
.why-choose-us h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #2f6fe4, #f28c28);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== CARDS WRAPPER ===== */
.why-choose-us .row {
  margin-top: 60px;
  gap: 30px;
  justify-content: center;
}

/* ===== CARD STYLE ===== */
.why-choose-us .col-md-3 {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  max-width: 260px;
}

.why-choose-us .col-md-3:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(47,111,228,0.2);
}

/* ===== ICON STYLE ===== */
.why-choose-us i {
  color: #2f6fe4;
  margin-bottom: 20px;
}

/* ===== TITLE ===== */
.why-choose-us h5 {
  font-size: 18px;
  font-weight: 600;
  color: #0b1320;
  margin-bottom: 10px;
}

/* ===== TEXT ===== */
.why-choose-us p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .why-choose-us h2 {
    font-size: 28px;
  }

  .why-choose-us .col-md-3 {
    max-width: 100%;
  }
}

/* ================= PREMIUM CTA ================= */

.premium-cta {
  padding: 0 !important;
  margin: 0 !important;
  text-align: center;
  background: linear-gradient(135deg, #2f6fe4, #f28c28);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* If inner spacing kavali ante */
.premium-cta .container {
  padding: 60px 20px;   /* adjust height here */
}

.premium-cta h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.premium-cta p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.95;
}

/* Buttons wrapper */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Primary Button */
.btn-primary-cta {
  background: #fff;
  color: #2f6fe4;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary-cta:hover {
  background: #0b1320;
  color: #fff;
  transform: translateY(-3px);
}

/* Secondary Button */
.btn-secondary-cta {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-secondary-cta:hover {
  background: #fff;
  color: #2f6fe4;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .premium-cta h2 {
    font-size: 28px;
  }

  .premium-cta p {
    font-size: 16px;
  }
}

/* Dropdown Menu Styling */
.dropdown-menu {
  background: #0b1320;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 0;
}

.dropdown-item {
  color: #fff;
  padding: 10px 20px;
  transition: 0.3s ease;
}

.dropdown-item:hover {
  background: linear-gradient(90deg, #2f6fe4, #f28c28);
  color: #fff;
}

/* ===== CLEAN MOBILE TOGGLER ===== */

/* Custom Toggler */
.navbar-toggler {
  border: none;
  background: transparent;
  width: 30px;
  height: 22px;
  position: relative;
  padding: 0;
}

.navbar-toggler span {
  position: absolute;
  width: 30px;
  height: 3px;
  background: #fff;
  left: 0;
  transition: 0.3s ease;
}

.navbar-toggler span:nth-child(1) { top: 0; }
.navbar-toggler span:nth-child(2) { top: 9px; }
.navbar-toggler span:nth-child(3) { bottom: 0; }

/* X animation */
.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}

/* Dropdown menu background - semi-transparent dark */
.dropdown-menu {
  background: rgba(11, 19, 32, 0.9); /* dark with 90% opacity */
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
  backdrop-filter: blur(8px); /* subtle glass effect */
}

/* Dropdown items */
.dropdown-item {
  color: #fff;
  padding: 10px 20px;
  transition: 0.3s ease;
}

.dropdown-item:hover {
  background: linear-gradient(90deg, #2f6fe4, #f28c28);
  color: #fff;
}

.footer-glass {
  background: rgba(0, 0, 0, 0.75);      /* full black glass */
  backdrop-filter: blur(15px);          /* glass blur effect */
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.95);    /* white text */
  font-family: "Poppins", sans-serif;
  padding: 50px 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.footer-glass h5 {
  color: #f28c28;       /* gradient-style heading */
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-glass p,
.footer-glass a {
  color: rgba(255,255,255,0.9);        /* readable white on black */
  font-size: 14px;
  line-height: 1.8;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-glass a:hover {
  color: #2f6fe4;                       /* highlight on hover */
  text-decoration: underline;
}

.footer-glass .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-glass .footer-links li {
  margin-bottom: 8px;
}

.footer-glass hr {
  border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-glass .btn-floating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  transition: all 0.3s ease;
}

.footer-glass .btn-floating:hover {
  background: linear-gradient(135deg, #2f6fe4, #f28c28);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.footer-glass i {
  color: #f28c28;          /* orange icons for premium look */
  margin-right: 8px;        /* spacing between icon and text */
  min-width: 18px;          /* align text */
  text-align: center;
}

/* Hover effect on links */
.footer-glass a:hover i {
  color: #2f6fe4;
}

/* Footer Social Icons */
.social-icons a {
  color: #ffffff;               /* white icons */
  background: transparent;      /* no colored background */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-right: 10px;
  text-decoration: none;
}

.social-icons a:last-child {
  margin-right: 0;
}

/* Hover effect */
.social-icons a:hover {
  color: #2f6fe4;               /* brand blue on hover */
  transform: translateY(-2px);  /* subtle lift effect */
}

/* Footer Social Icons */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;      /* no orange background */
  margin-right: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Target the icon itself */
.social-icons a i {
  color: #ffffff;               /* white icons */
  font-size: 16px;
  transition: all 0.3s ease;
}

/* Last icon no margin */
.social-icons a:last-child {
  margin-right: 0;
}

/* Hover effect */
.social-icons a:hover i {
  color: #2f6fe4;               /* brand blue on hover */
  transform: translateY(-2px);
}

/* ===== FLOATING WHATSAPP AT BOTTOM EDGE ===== */
.floating-whatsapp {
  position: fixed;
  left: -80px; /* start off-screen for slide-in */
  bottom: 20px; 
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #25d366; 
  color: #fff;
  font-size: 28px;
  text-align: center;
  border-radius: 50%; 
  z-index: 9999;
  box-shadow: 0 0 15px #25d366, 0 0 25px #25d366, 0 0 35px #25d366;
  animation: slide-in 0.8s forwards, whatsapp-glow 1.5s infinite alternate, pulse 2s infinite;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.2);
  box-shadow: 0 0 20px #25d366, 0 0 30px #25d366, 0 0 40px #25d366;
}

/* Slide in from left */
@keyframes slide-in {
  0% { left: -80px; }
  100% { left: 20px; }
}

/* Glow / Flash animation */
@keyframes whatsapp-glow {
  0% { box-shadow: 0 0 10px #25d366, 0 0 20px #25d366, 0 0 30px #25d366; }
  50% { box-shadow: 0 0 15px #25d366, 0 0 30px #25d366, 0 0 45px #25d366; }
  100% { box-shadow: 0 0 10px #25d366, 0 0 20px #25d366, 0 0 30px #25d366; }
}

/* Subtle pulse */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 100px;
  background: #0b1320;
  color: #fff;
  font-size: 22px;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  display: none; /* hide initially */
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: 0.3s ease;
}
.scroll-top:hover { transform: scale(1.1); }

/* ===== CHAT BOX ===== */
.chat-box {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  overflow: hidden;
  z-index: 999;
  font-family: "Poppins", sans-serif;
}

.chat-header {
  background: linear-gradient(135deg, #2f6fe4, #f28c28);
  color: #fff;
  padding: 12px 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.chat-header button {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.chat-body {
  padding: 12px 16px;
  display: block;
}

.chat-body p {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #333;
}

.chat-btn {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #2f6fe4, #f28c28);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s ease;
}
.chat-btn:hover { transform: translateY(-2px); }

/* Responsive */
@media (max-width: 768px) {
  .footer-glass .row {
    text-align: center;
  }
  .footer-glass .btn-floating {
    margin: 5px;
  }
}

/* ===== FLOATING CHAT BOX ===== */
.floating-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 280px;
  background: #0b1320;
  color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  animation: flash-chat 1.5s infinite alternate;
  font-family: "Poppins", sans-serif;
  z-index: 9999;
}

/* Flash / Glow animation */
@keyframes flash-chat {
  0% { box-shadow: 0 0 15px #ff6a00, 0 0 25px #ff6a00; }
  50% { box-shadow: 0 0 20px #ff6a00, 0 0 30px #ff6a00; }
  100% { box-shadow: 0 0 15px #ff6a00, 0 0 25px #ff6a00; }
}

/* Header */
.chat-header {
  background: linear-gradient(135deg, #2f6fe4, #f28c28);
  padding: 12px 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

/* Toggle button */
#chat-toggle {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

/* Chat body */
.chat-body {
  display: none; /* hidden initially */
  padding: 12px 15px;
  background: #111c2e;
}

/* Form */
.chat-body form input,
.chat-body form textarea {
  width: 100%;
  border-radius: 8px;
  border: none;
  padding: 8px 10px;
  margin-bottom: 10px;
  background: #1b2b5c;
  color: #fff;
}

.chat-body form input::placeholder,
.chat-body form textarea::placeholder {
  color: #bbb;
}

.chat-body form textarea {
  resize: none;
  height: 70px;
}

.chat-body form button {
  background: linear-gradient(135deg, #2f6fe4, #f28c28);
  border: none;
  color: #fff;
  border-radius: 50px;
  padding: 10px 0;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.chat-body form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242,140,40,0.4);
}

/* Minimized chat box style */
.floating-chat.minimized .chat-body {
  display: none;
}

.floating-chat.maximized .chat-body {
  display: block;
}

/* Pulse animation for chat reminder */
@keyframes chat-pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 rgba(242,140,40,0); }
  50% { transform: scale(1.05); box-shadow: 0 0 15px rgba(242,140,40,0.6); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(242,140,40,0); }
}

/* Class to trigger pulse */
.chat-pulse {
  animation: chat-pulse 1.2s ease-in-out;
}

/* Fix Navbar Gap */
body {
  padding-top: 90px;
}

/* ===== PREMIUM CONTACT SECTION ===== */

.premium-contact {
  padding: 100px 0;
  background: linear-gradient(-45deg, #0b1320, #1c2f5c, #0f1e3a, #162d5e);
  background-size: 400% 400%;
  animation: gradientMove 10s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.premium-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.35);
}

/* LEFT PANEL */
.contact-info {
  background: linear-gradient(135deg, #2f6fe4, #1d4ed8);
  padding: 60px 40px;
  color: #fff;
}

.contact-info h2 {
  font-weight: 800;
  font-size: 30px;
}

.info-item {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-item i {
  background: rgba(255,255,255,0.2);
  padding: 12px;
  border-radius: 50%;
}

/* RIGHT PANEL */
.form-panel {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(15px);
  padding: 60px 50px;
}

/* TITLE */
.form-title {
  font-size: 34px;
  font-weight: 900;
  color: #0b1320;
  position: relative;
  margin-bottom: 30px;
}

.form-title::after {
  content: "";
  width: 70px;
  height: 5px;
  background: linear-gradient(90deg, #2f6fe4, #1d4ed8);
  position: absolute;
  bottom: -10px;
  left: 0;
  border-radius: 10px;
}

/* INPUTS */
.premium-input {
  border: none;
  border-bottom: 2px solid #e0e0e0;
  border-radius: 0;
  padding: 14px 8px;
  font-size: 15px;
  transition: 0.3s;
  background: transparent;
}

.premium-input:focus {
  border-color: #2f6fe4;
  box-shadow: none;
}

/* BUTTON */
.premium-btn {
  background: linear-gradient(135deg, #2f6fe4, #1d4ed8);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.premium-btn::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  top: 0;
  left: -120%;
  transition: 0.5s;
}

.premium-btn:hover::before {
  left: 100%;
}

.premium-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(47,111,228,0.5);
}