:root {
  --primary-color: #223064;
  --secondary-color: #2b6cb0;
  --accent-color: #ed8936;
  --light-bg: #f7fafc;
  --dark-text: #1a202c;
  --light-text: #718096;
      --primary: #223064;   /* Main Blue */
    --gold: #faf6e9;      /* New Cream */
    --dark: #111;
    --light: #ffffff;
    --gray: #f5f6fa;
    --text: #333;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background-color: var(--primary-color) !important;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff !important;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  margin: 0 0.3rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  padding: 150px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-section .lead {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  padding: 140px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header .breadcrumb {
  background: transparent;
}

.page-header .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.page-header .breadcrumb-item.active {
  color: var(--accent-color);
}

/* Buttons */
.btn-accent {
  background-color: var(--accent-color);
  border: none;
  color: #fff;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background-color: #dd6b20;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-light {
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
}

.btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Section Styling */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--light-text);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* About Section */
.about-img-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  height: 400px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-box i {
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.3);
}

.about-highlight {
  background-color: var(--primary-color);
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.about-highlight i {
  font-size: 1.5rem;
  margin-right: 15px;
  color: var(--accent-color);
}

/* Service Cards */
.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.service-card h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  color: var(--light-text);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li i {
  color: var(--accent-color);
  margin-right: 10px;
}

/* Project Cards */
.project-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
}

.project-card .card-body {
  padding: 20px;
}

.project-card h5 {
  color: var(--primary-color);
  font-weight: 600;
}

.project-location {
  color: var(--accent-color);
  font-size: 0.9rem;
}

/* Certificate Cards */
.cert-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-5px);
}

.cert-icon {
  width: 60px;
  height: 60px;
  background-color: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.cert-icon i {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.cert-card h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 5px;
}

/* Feature Items */
.feature-item {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
}

.feature-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-right: 20px;
  flex-shrink: 0;
}

.feature-item h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 5px;
}

/* Testimonials */
.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 5rem;
  color: var(--light-bg);
  font-family: "Inter", sans-serif;
  line-height: 1;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  color: var(--light-text);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
}

.testimonial-project {
  font-size: 0.9rem;
  color: var(--accent-color);
  margin-bottom: 0;
}

.stars {
  color: #ffc107;
  margin-bottom: 15px;
}

/* Contact Section */
.contact-info {
  background: var(--primary-color);
  color: #fff;
  padding: 40px;
  border-radius: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-item i {
  font-size: 1.5rem;
  margin-right: 15px;
  color: var(--accent-color);
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-control,
.form-select {
  border: 2px solid #e2e8f0;
  padding: 12px 15px;
  border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: none;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  padding: 60px 0;
}

.cta-section h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: 30px 0;
}

footer h5 {
  font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
  .nav-link {
    margin: 5px 0;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section {
    padding: 120px 0 80px;
  }

  .page-header {
    padding: 120px 0 40px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .navbar-brand {
    font-size: 1.1rem;
  }

  .contact-info,
  .contact-form {
    padding: 25px;
  }
}

.custom-navbar {
    background: var(--primary);
    padding: 12px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.custom-navbar.scrolled {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.navbar-logo {
    height: 72px;          /* Logo height */
    width: auto;
    object-fit: contain;
    border-radius: 6px;    /* Agar square logo ho */
}
.hero-section h1 {
    font-size: 42px;
    font-weight: 800;
}

.hero-section .lead {
    color: #faf6e9;
}

.btn-accent {
    background: var(--gold);
    color: var(--primary);
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 25px;
}

.btn-accent:hover {
    background: #ffffff;
    color: var(--primary);
}

.carousel-item {
    min-height: 100vh;
}
/* ===========================
   BRAND / LOGO
   =========================== */
.brand-icon {
    width: 38px;
    height: 38px;
    background: var(--gold);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
}

.brand-text {
    color: var(--gold);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.6px;
}

/* ===========================
   MENU LINKS
   =========================== */
.nav-custom {
    color: var(--gold) !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 14px !important;
    position: relative;
    transition: all 0.3s ease;
}


.nav-custom::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-custom:hover::after,
.nav-custom.active::after {
    width: 100%;
}

.nav-custom:hover,
.nav-custom.active {
    color: #ffffff !important;
}

.contact-btn {
    background: var(--gold);
    color: var(--primary) !important;
    border-radius: 50px;
    font-weight: 700;
    padding: 8px 22px;
    border: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .nav-custom {
        padding: 12px 0 !important;
        text-align: center;
    }

    .contact-btn {
        margin-top: 10px;
    }
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* BACKGROUND SLIDES */
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.3s ease-in-out;
}
.slide.active { opacity: 1; }

/* OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(34, 48, 100, 0.90),
        rgba(34, 48, 100, 0.65)
    );
}



:root{
  --primary:#223064;
  --gold:#faf6e9;
}

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Inter", sans-serif;
}

.hero{
  height:100vh;
  position:relative;
  overflow:hidden;
}

/* SLIDES */
.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  display:none;
  transform:scale(1.05);
  transition:opacity 1s ease, transform 6s ease;
}

.slide.active{
  display:block;
  transform:scale(1);
}

/* LIGHT OVERLAY (IMAGE CLEAR) */
.overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(34,48,100,0.65),
    rgba(34,48,100,0.25)
  );
}

/* CONTENT */
.content{
  position:absolute;
  top:50%;
  left:7%;
  transform:translateY(-50%);
  color:#fff;
  max-width:650px;
}

.content h1{
  font-size:40px;
  margin-bottom:10px;
}

.content h1 span{
  color:var(--gold);
}

.content p{
  margin-bottom:22px;
  line-height:1.6;
  opacity:.95;
}

/* SERVICES */
.services{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
  margin-bottom:25px;
}

.service{
  display:flex;
  gap:12px;
  background:rgba(255,255,255,0.18);
  padding:12px;
  border-radius:10px;
  backdrop-filter:blur(4px);
}

.service i{
  font-size:22px;
  color:var(--gold);
}

.service strong{
  display:block;
  font-size:14px;
}

.service span{
  font-size:13px;
  opacity:.9;
}

/* BUTTON */
.btn{
  display:inline-block;
  padding:12px 26px;
  background:var(--gold);
  color:var(--primary);
  text-decoration:none;
  border-radius:25px;
  font-weight:bold;
}

/* ARROWS */
.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  background:var(--gold);
  color:var(--primary);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:18px;
}

.arrow.left{ left:20px; }
.arrow.right{ right:20px; }

/* MOBILE */
@media(max-width:768px){
  .content{
    left:5%;
    right:5%;
  }
  .content h1{
    font-size:30px;
  }
  .services{
    grid-template-columns:1fr;
  }
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
font-family: "Inter", sans-serif;
}


/* ===== SERVICES SECTION ===== */
.services-section{
  padding:80px 7%;
}

/* HEADER */
.services-header{
  text-align:center;
  margin-bottom:45px;
}

.services-header h2{
  font-size:34px;
  font-weight: 600;
  color: #223064;
}

.services-header p{
  margin-top:8px;
  color:#555;
}

/* GRID */
.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

/* LINK */
.service-link{
  text-decoration:none;
}

/* CARD */
.service-card{
  position:relative;
  height:260px;
  border-radius:18px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  box-shadow:0 12px 28px rgba(0,0,0,.12);
  transition:.4s ease;
}

.service-card:hover{
  transform:translateY(-8px);
}

/* OVERLAY */
.service-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(34,48,100,.85),
    rgba(34,48,100,.3)
  );
}

/* CONTENT */
.service-card-content{
  position:absolute;
  bottom:25px;
  left:20px;
  right:20px;
  color:#fff;
  z-index:2;
}

.service-card-content h3{
  font-size:20px;
  margin-bottom:8px;
}

.service-card-content p{
  font-size:14px;
  opacity:.95;
}

/* CTA */
.services-cta{
  text-align:center;
  margin-top:45px;
}

.primary-btn{
  padding:15px 36px;
  background: #223064;
  color:#ffffff;
  text-decoration:none;
  border-radius:30px;
  font-weight:bold;
  transition:.3s;
}

.primary-btn:hover{
  background:#1a254f;
}

/* RESPONSIVE */
@media(max-width:992px){
  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .services-grid{
    grid-template-columns:1fr;
  }
}

:root{
  --sanket-brand:#223064;
  --sanket-accent:#3b4dbf;
  --sanket-bg:#f5f7fb;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Inter", sans-serif;
}

body{
  background:var(--sanket-bg);
}

/* ================= SECTION ================= */
.sanket-trust-zone{
  padding:100px 7%;
  background:linear-gradient(135deg,#ffffff,#f1f3f9);
}

.sanket-trust-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
}

/* ================= LEFT CONTENT ================= */
.sanket-trust-content h2{
  font-size:42px;
  color:var(--sanket-brand);
  margin-bottom:15px;
}

.sanket-trust-content p{
  font-size:15px;
  color:#555;
  line-height:1.7;
  margin-bottom:45px;
}

/* ================= STATS ================= */
.sanket-trust-metrics{
  display:flex;
  gap:25px;
}

.sanket-metric-card{
  background:#ffffff;
  padding:30px 28px;
  border-radius:22px;
  box-shadow:0 20px 45px rgba(0,0,0,.08);
  text-align:center;
  flex:1;
}

.sanket-metric-icon{
  font-size:30px;
  color:var(--sanket-brand);
  margin-bottom:14px;
}

.sanket-metric-value{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:4px;
  margin-bottom:8px;
}

.sanket-metric-count{
  font-size:30px;
  font-weight:900;
  color:var(--sanket-brand);
  line-height:1;
}

.sanket-metric-unit{
  font-size:32px;
  font-weight:800;
  color:var(--sanket-accent);
}

.sanket-metric-label{
  font-size:13px;
  color:#666;
  letter-spacing:.4px;
}

/* ================= FEATURES ================= */
.sanket-trust-highlights{
  display:grid;
  gap:22px;
}

.sanket-highlight-item{
  display:flex;
  gap:20px;
  padding:26px;
  border-radius:20px;
  background:#ffffff;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
  transition:.4s ease;
  position:relative;
}

.sanket-highlight-item::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:4px;
  height:100%;
  background:linear-gradient(to bottom,var(--sanket-brand),var(--sanket-accent));
}

.sanket-highlight-item:hover{
  transform:translateY(-6px);
}

.sanket-highlight-icon{
  width:58px;
  height:58px;
  border-radius:16px;
  background:linear-gradient(135deg,var(--sanket-brand),var(--sanket-accent));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  flex-shrink:0;
}

.sanket-highlight-text h4{
  font-size:18px;
  margin-bottom:6px;
}

.sanket-highlight-text p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){
  .sanket-trust-grid{
    grid-template-columns:1fr;
  }
  .sanket-trust-metrics{
    flex-direction:column;
  }
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
font-family: "Inter", sans-serif;
}

body{
  background:var(--sanket-bg);
}

/* ================= PROJECTS SECTION ================= */
.sanket-work-zone{
  padding:100px 7%;
  background:#ffffff;
}

.sanket-work-head{
  text-align:center;
  margin-bottom:60px;
}

.sanket-work-head h2{
  font-size:38px;
  color:var(--sanket-brand);
  margin-bottom:10px;
}

.sanket-work-head p{
  font-size:15px;
  color:#666;
}

/* GRID */
.sanket-work-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
}

/* CARD */
.sanket-work-card{
  position:relative;
}

/* IMAGE */
.sanket-work-image{
  height:240px;
  border-radius:22px;
  background-size:cover;
  background-position:center;
  box-shadow:0 20px 40px rgba(0,0,0,.12);
}

/* FLOAT INFO */
.sanket-work-info{
  background:#ffffff;
  border-radius:18px;
  padding:18px 20px;
  box-shadow:0 15px 35px rgba(0,0,0,.15);
  position:absolute;
  left:14px;
  right:14px;
  bottom:-32px;
}

.sanket-work-info h4{
  font-size:17px;
  margin-bottom:4px;
}

.sanket-work-info span{
  font-size:13px;
  color:#666;
}

/* BUTTON */
.sanket-work-btn{
  text-align:center;
  margin-top:90px;
}

.sanket-work-btn a{
  padding:14px 38px;
  background:var(--sanket-brand);
  color:#ffffff;
  text-decoration:none;
  border-radius:30px;
  font-weight:600;
  transition:.3s;
}

.sanket-work-btn a:hover{
  background:var(--sanket-accent);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media(max-width:992px){
  .sanket-work-zone{
    padding:80px 6%;
  }

  .sanket-work-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .sanket-work-image{
    height:220px;
  }

  .sanket-work-btn{
    margin-top:100px;
  }
}

/* Mobile */
@media(max-width:576px){
  .sanket-work-zone{
    padding:60px 5%;
  }

  .sanket-work-head h2{
    font-size:30px;
  }

  .sanket-work-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .sanket-work-image{
    height:200px;
  }

  /* FIX floating overlap on mobile */
  .sanket-work-info{
    position:relative;
    left:0;
    right:0;
    bottom:0;
    margin-top:-18px;
    border-radius:16px;
  }

  .sanket-work-info h4{
    font-size:16px;
  }

  .sanket-work-btn{
    margin-top:60px;
  }

  .sanket-work-btn a{
    width:100%;
    display:inline-block;
  }
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Inter", sans-serif;

}

/* ================= CTA SECTION ================= */
.sanket-cta-zone{
  padding:100px 7%;
  background:#ffffff;
  animation:sanketFadeUp 1s ease both;
}

/* MAIN CARD */
.sanket-cta-card{
  max-width:1200px;
  margin:auto;
  background:var(--sanket-brand);
  border-radius:28px;
  padding:60px 65px;
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:45px;
  align-items:center;
  box-shadow:0 30px 70px rgba(34,48,100,.35);
  transition:.4s ease;
}

.sanket-cta-card:hover{
  transform:translateY(-6px);
  box-shadow:0 40px 90px rgba(34,48,100,.45);
}

/* LEFT CONTENT */
.sanket-cta-content h2{
  font-size:36px;
  color:#ffffff;
  margin-bottom:14px;
  animation:sanketSlideLeft .9s ease both;
}

.sanket-cta-content p{
  font-size:15px;
  color:rgba(255,255,255,.85);
  max-width:520px;
  line-height:1.7;
  animation:sanketSlideLeft 1.1s ease both;
}

/* RIGHT BOX */
.sanket-cta-action{
  background:rgba(255,255,255,.08);
  border-radius:22px;
  padding:38px;
  text-align:center;
  border:1px solid var(--sanket-border);
  animation:sanketSlideRight 1s ease both;
}

.sanket-cta-action span{
  font-size:13px;
  letter-spacing:1px;
  color:rgba(255,255,255,.75);
}

.sanket-cta-action h3{
  font-size:36px;
  margin:16px 0 26px;
  color:#ffffff;
  letter-spacing:1px;
}

/* BUTTON */
.sanket-cta-action a{
  display:inline-block;
  padding:14px 40px;
  background:#ffffff;
  color:var(--sanket-brand);
  text-decoration:none;
  border-radius:30px;
  font-weight:700;
  transition:.3s ease;
}

.sanket-cta-action a:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(0,0,0,.25);
  background:#f1f1f1;
}

/* ================= ANIMATIONS ================= */
@keyframes sanketFadeUp{
  from{opacity:0; transform:translateY(40px);}
  to{opacity:1; transform:translateY(0);}
}

@keyframes sanketSlideLeft{
  from{opacity:0; transform:translateX(-40px);}
  to{opacity:1; transform:translateX(0);}
}

@keyframes sanketSlideRight{
  from{opacity:0; transform:translateX(40px);}
  to{opacity:1; transform:translateX(0);}
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .sanket-cta-card{
    grid-template-columns:1fr;
    text-align:center;
    padding:50px 40px;
  }

  .sanket-cta-content p{
    margin:auto;
  }
}

@media(max-width:576px){
  .sanket-cta-zone{
    padding:70px 5%;
  }

  .sanket-cta-content h2{
    font-size:28px;
  }

  .sanket-cta-action h3{
    font-size:28px;
  }

  .sanket-cta-action a{
    width:100%;
  }
}

:root{
  --sanket1-brand:#223064;
  --sanket1-light:#ffffff;
  --sanket1-text:rgba(255,255,255,.85);
  --sanket1-border:rgba(255,255,255,.2);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Inter", sans-serif;
}

/* ================= FOOTER ================= */
.sanket1-footer-zone{
  background:var(--sanket1-brand);
  color:var(--sanket1-text);
  padding:80px 7% 30px;
}

/* GRID */
.sanket1-footer-grid{
  display:grid;
  grid-template-columns:1.6fr 1fr 1.2fr;
  gap:60px;
  margin-bottom:50px;
}

/* BRAND */
.sanket1-footer-brand img{
  width:160px;
  margin-bottom:16px;
}

.sanket1-footer-brand h2{
  font-size:30px;
  color:var(--sanket1-light);
  margin-bottom:10px;
}

.sanket1-footer-brand p{
  font-size:14px;
  line-height:1.7;
  max-width:420px;
}

/* LINKS */
.sanket1-footer-links h4{
  font-size:18px;
  color:var(--sanket1-light);
  margin-bottom:18px;
}



.sanket1-footer-links ul li{
  margin-bottom:12px;
}

.sanket1-footer-links ul li a{
  text-decoration:none;
  color:var(--sanket1-text);
  font-size:14px;
  transition:.3s;
}

.sanket1-footer-links ul li a:hover{
  color:#ffffff;
  padding-left:6px;
}

/* CONTACT */
.sanket1-footer-contact h4{
  font-size:18px;
  color:var(--sanket1-light);
  margin-bottom:18px;
}

.sanket1-footer-contact p{
  font-size:14px;
  line-height:1.8;
  margin-bottom:10px;
}

.sanket1-footer-contact a{
  color:#ffffff;
  text-decoration:none;
}

.sanket1-footer-contact a:hover{
  text-decoration:underline;
}

/* SOCIAL */
.sanket1-footer-social{
  display:flex;
  gap:14px;
  margin-top:18px;
}

.sanket1-footer-social a{
  width:40px;
  height:40px;
  border-radius:50%;
  border:1px solid var(--sanket1-border);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ffffff;
  font-size:16px;
  transition:.3s;
}

.sanket1-footer-social a:hover{
  background:#ffffff;
  color:var(--sanket1-brand);
}

/* DIVIDER */
.sanket1-footer-divider{
  height:1px;
  background:var(--sanket1-border);
  margin:40px 0 25px;
}

/* BOTTOM */
.sanket1-footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:15px;
}

.sanket1-footer-bottom p{
  font-size:13px;
  color:rgba(255,255,255,.75);
}

.sanket1-footer-bottom span{
  color:#ffffff;
  font-weight:600;
}

/* RESPONSIVE */
@media(max-width:900px){
  .sanket1-footer-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .sanket1-footer-bottom{
    flex-direction:column;
    text-align:center;
  }
}

:root{
  --sanket2a-brand:#223064;
  --sanket2a-light:#ffffff;
  --sanket2a-bg:#f5f7fb;
  --sanket2a-text:#333;
  --sanket2a-muted:#666;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Inter", sans-serif;
}

/* ================= ABOUT SECTION ================= */
.sanket2a-about-section{
  padding:110px 7%;
  background:var(--sanket2a-bg);
}

.sanket2a-about-wrapper{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

/* TEXT CARD */
.sanket2a-about-card{
  background:var(--sanket2a-light);
  padding:50px;
  border-radius:28px;
  box-shadow:0 25px 60px rgba(0,0,0,.1);
  position:relative;
}

.sanket2a-about-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:6px;
  height:100%;
  border-radius:28px 0 0 28px;
  background:var(--sanket2a-brand);
}

.sanket2a-about-card h2{
  font-size:42px;
  color:var(--sanket2a-brand);
  margin-bottom:20px;
}

.sanket2a-about-card p{
  font-size:15px;
  color:var(--sanket2a-text);
  line-height:1.9;
  margin-bottom:18px;
}

/* FEATURES */
.sanket2a-features{
  margin-top:35px;
}

.sanket2a-feature{
  display:flex;
  gap:16px;
  margin-bottom:20px;
}

.sanket2a-feature i{
  font-size:20px;
  color:var(--sanket2a-brand);
  margin-top:4px;
}

.sanket2a-feature h4{
  font-size:17px;
  margin-bottom:4px;
}

.sanket2a-feature p{
  font-size:14px;
  color:var(--sanket2a-muted);
}

/* IMAGE */
.sanket2a-about-image{
  position:relative;
}

.sanket2a-about-image::before{
  content:"";
  position:absolute;
  right:-25px;
  top:30px;
  width:85%;
  height:85%;
  background:var(--sanket2a-brand);
  border-radius:30px;
  z-index:0;
}

.sanket2a-about-image img{
  width:100%;
  border-radius:30px;
  position:relative;
  z-index:1;
  box-shadow:0 30px 70px rgba(0,0,0,.25);
}

/* RESPONSIVE */
@media(max-width:992px){
  .sanket2a-about-wrapper{
    grid-template-columns:1fr;
    gap:60px;
  }

  .sanket2a-about-image::before{
    right:auto;
    left:0;
  }
}

@media(max-width:576px){
  .sanket2a-about-section{
    padding:80px 5%;
  }

  .sanket2a-about-card{
    padding:35px;
  }

  .sanket2a-about-card h2{
    font-size:32px;
  }
}
:root{
  --sanketKS4-brand:#223064;
  --sanketKS4-bg:#ffffff;
  --sanketKS4-card:#ffffff;
  --sanketKS4-text:#222;
  --sanketKS4-muted:#555;
  --sanketKS4-border:#e6e8ef;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
 font-family: "Inter", sans-serif;
}

/* ================= KEY STRENGTHS ================= */
.sanketKS4-section{
  padding:110px 7%;
  background:var(--sanketKS4-bg);
}

.sanketKS4-wrapper{
  max-width:1200px;
  margin:auto;
}

/* HEADER */
.sanketKS4-header{
  text-align:center;
  margin-bottom:70px;
}

.sanketKS4-header h2{
  font-size:42px;
  color:var(--sanketKS4-brand);
  margin-bottom:14px;
}

.sanketKS4-header p{
  font-size:16px;
  color:var(--sanketKS4-muted);
  max-width:760px;
  margin:auto;
  line-height:1.8;
}

/* GRID */
.sanketKS4-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:34px;
}

/* CARD */
.sanketKS4-card{
  background:var(--sanketKS4-card);
  border:1px solid var(--sanketKS4-border);
  border-radius:26px;
  padding:42px 36px;
  box-shadow:0 20px 45px rgba(0,0,0,.08);
  transition:.4s ease;
}

.sanketKS4-card:hover{
  transform:translateY(-8px);
  box-shadow:0 32px 70px rgba(0,0,0,.14);
}

/* ICON */
.sanketKS4-icon{
  width:66px;
  height:66px;
  border-radius:18px;
  background:var(--sanketKS4-brand);
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  margin-bottom:22px;
}

/* TEXT */
.sanketKS4-card h4{
  font-size:19px;
  margin-bottom:10px;
  color:var(--sanketKS4-text);
}

.sanketKS4-card p{
  font-size:14.8px;
  color:var(--sanketKS4-muted);
  line-height:1.75;
}

/* RESPONSIVE */
@media(max-width:992px){
  .sanketKS4-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .sanketKS4-section{
    padding:80px 5%;
  }

  .sanketKS4-header h2{
    font-size:32px;
  }

  .sanketKS4-grid{
    grid-template-columns:1fr;
  }
  }


  :root{
  --sanketWPW2-brand:#223064;
  --sanketWPW2-accent:#3b4dbf;
  --sanketWPW2-bg:#ffffff;
  --sanketWPW2-text:#222;
  --sanketWPW2-muted:#555;
  --sanketWPW2-border:#e6e8ef;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Inter", sans-serif;
}

body{
  background:#ffffff;
}

/* ================= WORKING PROCESS ================= */
.sanketWPW2-section{
  padding:120px 6%;
  background:#ffffff;
}

.sanketWPW2-header{
  text-align:center;
  margin-bottom:90px;
}

.sanketWPW2-header h2{
  font-size:44px;
  color:var(--sanketWPW2-brand);
  margin-bottom:12px;
}

.sanketWPW2-header p{
  color:var(--sanketWPW2-muted);
  max-width:760px;
  margin:auto;
  line-height:1.8;
  font-size:16px;
}

/* CONTAINER */
.sanketWPW2-container{
  position:relative;
  max-width:1400px;
  margin:auto;
}

/* SVG CURVE */
.sanketWPW2-svg{
  position:absolute;
  top:-48px;
  left:0;
  width:100%;
  height:260px;
  z-index:0;
}

/* PROCESS ROW */
.sanketWPW2-row{
  display:flex;
  justify-content:space-between;
  position:relative;
  z-index:2;
}

/* CARD */
.sanketWPW2-card{
  width:22%;
  background:#ffffff;
  border-radius:140px;
  padding:52px 28px 62px;
  text-align:center;
  position:relative;
  box-shadow:0 22px 55px rgba(0,0,0,.1);
  transition:.35s ease;
}

.sanketWPW2-card:hover{
  transform:translateY(-6px);
}

/* OUTLINE */
.sanketWPW2-card::before{
  content:"";
  position:absolute;
  inset:-14px;
  border:3px solid var(--sanketWPW2-brand);
  border-radius:160px;
  opacity:.9;
}

/* ICON */
.sanketWPW2-icon{
  width:74px;
  height:74px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--sanketWPW2-brand),var(--sanketWPW2-accent));
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  margin:0 auto 22px;
  box-shadow:0 10px 25px rgba(34,48,100,.35);
}

/* STEP NUMBER */
.sanketWPW2-step{
  font-size:42px;
  font-weight:800;
  color:var(--sanketWPW2-brand);
  opacity:.18;
  margin-bottom:12px;
}

/* TEXT */
.sanketWPW2-card h4{
  font-size:20px;
  margin-bottom:10px;
  color:var(--sanketWPW2-text);
}

.sanketWPW2-card p{
  font-size:14.6px;
  line-height:1.7;
  color:var(--sanketWPW2-muted);
}

/* RESPONSIVE */
@media(max-width:1100px){
  .sanketWPW2-row{
    flex-wrap:wrap;
    gap:60px;
    justify-content:center;
  }

  .sanketWPW2-card{
    width:260px;
  }

  .sanketWPW2-svg{
    display:none;
  }
}

:root{
  --sanketSRF-brand:#223064;
  --sanketSRF-text:#222;
  --sanketSRF-muted:#555;
  --sanketSRF-border:#e6e8ef;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
font-family: "Inter", sans-serif;
}

body{
  background:#ffffff;
}

/* ================= SERVICES ================= */
.sanketSRF-section{
  padding:110px 7%;
}

.sanketSRF-wrapper{
  max-width:1400px;
  margin:auto;
}

/* HEADER */
.sanketSRF-header{
  text-align:center;
  margin-bottom:70px;
}

.sanketSRF-header h2{
  font-size:44px;
  color:var(--sanketSRF-brand);
  margin-bottom:14px;
}

.sanketSRF-header p{
  font-size:16px;
  color:var(--sanketSRF-muted);
  max-width:780px;
  margin:auto;
  line-height:1.8;
}

/* GRID */
.sanketSRF-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

/* LINK */
.sanketSRF-link{
  text-decoration:none;
  color:inherit;
}

/* CARD */
.sanketSRF-card{
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 20px 45px rgba(0,0,0,.08);
  transition:.35s ease;
  height:100%;
}

.sanketSRF-card:hover{
  transform:translateY(-8px);
  box-shadow:0 32px 70px rgba(0,0,0,.14);
}

/* IMAGE */
.sanketSRF-img{
  height:200px;
  overflow:hidden;
}

.sanketSRF-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s ease;
}

.sanketSRF-card:hover img{
  transform:scale(1.08);
}

/* CONTENT */
.sanketSRF-content{
  padding:26px;
}

.sanketSRF-content h4{
  font-size:18px;
  margin-bottom:8px;
  color:var(--sanketSRF-text);
}

.sanketSRF-content p{
  font-size:14.5px;
  color:var(--sanketSRF-muted);
  line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:1200px){
  .sanketSRF-grid{ grid-template-columns:repeat(3,1fr); }
}
@media(max-width:900px){
  .sanketSRF-grid{ grid-template-columns:repeat(2,1fr); }
}
@media(max-width:576px){
  .sanketSRF-section{ padding:80px 5%; }
  .sanketSRF-header h2{ font-size:32px; }
  .sanketSRF-grid{ grid-template-columns:1fr; }
}

:root{
  --sanketCT-brand:#223064;
  --sanketCT-text:#222;
  --sanketCT-muted:#555;
  --sanketCT-border:#e6e8ef;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
font-family: "Inter", sans-serif;
}

body{
  background:#ffffff;
}

/* ================= CONTACT ================= */
.sanketCT-section{
  padding:110px 7%;
}

.sanketCT-wrapper{
  max-width:1300px;
  margin:auto;
}

/* HEADER */
.sanketCT-header{
  text-align:center;
  margin-bottom:70px;
}

.sanketCT-header h2{
  font-size:44px;
  color:var(--sanketCT-brand);
  margin-bottom:12px;
}

.sanketCT-header p{
  font-size:16px;
  color:var(--sanketCT-muted);
  max-width:760px;
  margin:auto;
  line-height:1.8;
}

/* GRID */
.sanketCT-grid{
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:50px;
}

/* LEFT INFO CARD */
.sanketCT-info{
  background:#fff;
  border-radius:26px;
  padding:40px;
  box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.sanketCT-profile{
  text-align:center;
  margin-bottom:30px;
}

.sanketCT-profile img{
  width:120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
  border:4px solid var(--sanketCT-brand);
  margin-bottom:12px;
}

.sanketCT-profile h4{
  margin-bottom:4px;
}

.sanketCT-profile span{
  font-size:14px;
  color:var(--sanketCT-muted);
}

.sanketCT-item{
  display:flex;
  gap:16px;
  margin-bottom:18px;
}

.sanketCT-item i{
  color:var(--sanketCT-brand);
  font-size:18px;
  margin-top:4px;
}

.sanketCT-item p{
  font-size:14.5px;
  color:var(--sanketCT-muted);
  line-height:1.6;
}

/* FORM */
.sanketCT-form{
  background:#fff;
  border-radius:26px;
  padding:45px;
  box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.sanketCT-form h4{
  margin-bottom:30px;
  color:var(--sanketCT-brand);
}

.sanketCT-field{
  margin-bottom:18px;
}

.sanketCT-field label{
  font-size:14px;
  margin-bottom:6px;
  display:block;
}

.sanketCT-field input,
.sanketCT-field select,
.sanketCT-field textarea{
  width:100%;
  padding:14px;
  border-radius:10px;
  border:1px solid var(--sanketCT-border);
  outline:none;
  font-size:14px;
}

.sanketCT-field textarea{
  resize:none;
}

.sanketCT-btn{
  width:100%;
  background:var(--sanketCT-brand);
  color:#fff;
  border:none;
  padding:16px;
  font-size:16px;
  border-radius:12px;
  cursor:pointer;
  transition:.3s ease;
}

.sanketCT-btn:hover{
  background:#1a264d;
}

/* MAP */
.sanketCT-map{
  margin-top:70px;
}

.sanketCT-map h4{
  text-align:center;
  margin-bottom:20px;
  color:var(--sanketCT-brand);
}

.sanketCT-map iframe{
  width:100%;
  height:320px;
  border:none;
  border-radius:22px;
  box-shadow:0 20px 45px rgba(0,0,0,.12);
}

/* RESPONSIVE */
@media(max-width:900px){
  .sanketCT-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:576px){
  .sanketCT-section{
    padding:80px 5%;
  }

  .sanketCT-header h2{
    font-size:32px;
  }
}

:root{
  --brand:#223064;
  --dark:#0b0f24;
  --dark2:#141a3a;
  --text:#cfd4ff;
  --muted:#9aa3d6;
}

.nx-footer{
  background: radial-gradient(circle at top, #1b2252, #090c1f);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

/* ---------- LAYOUT ---------- */
.nx-footer-top{
  max-width:1200px;
  margin:auto;
  padding:80px 20px 60px;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.4fr;
  gap:50px;
}

/* ---------- BRAND ---------- */
.nx-footer-logo-wrap{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:18px;
}

.nx-footer-logo-img{
  width:95px;
}

.nx-footer-desc{
  font-size:14px;
  line-height:1.8;
  color:var(--text);
  margin-bottom:22px;
}

/* ---------- HEADINGS ---------- */
.nx-footer-heading{
  font-size:16px;
  color:#fff;
  margin-bottom:22px;
  position:relative;
  letter-spacing:0.5px;
}

.nx-footer-heading::after{
  content:"";
  width:34px;
  height:3px;
  background:linear-gradient(90deg,var(--brand),#3b4ee8);
  position:absolute;
  left:0;
  bottom:-10px;
  border-radius:10px;
}

/* ---------- LINKS ---------- */
.nx-footer-links{
  list-style:none;
  padding:0;
  margin:0;
}

.nx-footer-links li{
  margin-bottom:14px;
}

.nx-footer-links a{
  color:var(--text);
  font-size:14px;
  text-decoration:none;
  position:relative;
  transition:.3s ease;
}

.nx-footer-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background:var(--brand);
  transition:.3s;
}

.nx-footer-links a:hover{
  color:#fff;
}

.nx-footer-links a:hover::after{
  width:100%;
}

/* ---------- SOCIAL ---------- */
.nx-footer-social{
  display:flex;
  gap:14px;
}

.nx-footer-social a{
  width:40px;
  height:40px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(6px);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.3s ease;
}

.nx-footer-social a:hover{
  background:var(--brand);
  transform:translateY(-4px);
}

/* ---------- SUBSCRIBE ---------- */
.nx-footer-subscribe{
  display:flex;
  border-radius:30px;
  overflow:hidden;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(8px);
}

.nx-footer-subscribe input{
  flex:1;
  padding:14px 18px;
  border:none;
  outline:none;
  background:transparent;
  color:#fff;
}

.nx-footer-subscribe input::placeholder{
  color:var(--muted);
}

.nx-footer-subscribe button{
  background:linear-gradient(135deg,var(--brand),#3b4ee8);
  border:none;
  padding:0 22px;
  color:#fff;
  cursor:pointer;
  transition:.3s;
}

.nx-footer-subscribe button:hover{
  opacity:.85;
}

/* ---------- GST ---------- */
.nx-footer-gst{
  margin-top:18px;
  font-size:13px;
  color:var(--muted);
}

/* ---------- BOTTOM ---------- */
.nx-footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  padding:22px 15px;
  text-align:center;
  font-size:13px;
  color:var(--muted);
}

.nx-footer-bottom p{
  margin:6px 0;
}

/* ---------- RESPONSIVE ---------- */
@media(max-width:992px){
  .nx-footer-top{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:576px){
  .nx-footer-top{
    grid-template-columns:1fr;
    text-align:center;
    gap:40px;
  }

  .nx-footer-logo-wrap,
  .nx-footer-social{
    justify-content:center;
  }

  .nx-footer-heading::after{
    left:50%;
    transform:translateX(-50%);
  }
}



/* ===============================
   HERO VIDEO SECTION
=============================== */

.hero-video {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* VIDEO */
.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.55)
  );
  z-index: 2;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  color: #ffffff;
}

/* TEXT */
.hero-content h1 {
  font-size: 48px;
  max-width: 900px;
  line-height: 1.2;
}

.hero-content h1 span {
  color: #223064;
}

.hero-content p {
  margin-top: 20px;
  max-width: 700px;
  font-size: 16px;
  color: #e0e0e0;
}

/* SERVICES */
.hero-services {
  display: flex;
  gap: 30px;
  margin: 35px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-service {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.hero-service i {
  font-size: 20px;
  color: #223064;
}

/* BUTTON */
.hero-btn {
  padding: 14px 32px;
  background: #223064;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  border-radius: 30px;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #1a274f;
}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-services {
    gap: 18px;
  }
}


/* ---------------- HERO ---------------- */
.newsanket-hero{
  background:linear-gradient(135deg,#223064,#1a2a5f);
  color:#ffffff;
  padding:180px 20px 80px;
  text-align:center;
}

.newsanket-hero h1{
  font-size:40px;
  margin-bottom:14px;
}

.newsanket-hero p{
  max-width:820px;
  margin:auto;
  font-size:16px;
  opacity:0.95;
}

.newsanket-hero-line{
  width:90px;
  height:4px;
  background:#ffffff;
  margin:30px auto 0;
  border-radius:20px;
}

/* ---------------- CONTENT ---------------- */
.newsanket-content{
  max-width:920px;
  margin:-55px auto 0;
  background:#ffffff;
  padding:45px 35px;
  border-radius:14px;
  box-shadow:0 18px 45px rgba(0,0,0,0.08);
  text-align:center;
}

.newsanket-content p{
  margin-bottom:18px;
  font-size:15px;
}

/* ---------------- IMAGE ---------------- */
.newsanket-image{
  max-width:1050px;
  margin:60px auto;
  padding:0 20px;
}

.newsanket-image img{
  width:100%;
  border-radius:16px;
  box-shadow:0 22px 55px rgba(0,0,0,0.15);
}

/* ---------------- CONTACT CTA ---------------- */
.newsanket-cta{
  background:#223064;
  color:#ffffff;
  padding:75px 20px;
  text-align:center;
}

.newsanket-cta h2{
  font-size:30px;
  margin-bottom:10px;
}

.newsanket-cta p{
  max-width:720px;
  margin:0 auto 30px;
  font-size:15px;
  opacity:0.95;
}

.newsanket-cta-actions{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.newsanket-cta-btn{
  padding:14px 32px;
  border-radius:30px;
  font-size:15px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}

/* Primary Button */
.newsanket-cta-btn.primary{
  background:#ffffff;
  color:#223064;
}

.newsanket-cta-btn.primary:hover{
  background:#e4e8ff;
}

/* Secondary Button */
.newsanket-cta-btn.secondary{
  border:2px solid #ffffff;
  color:#ffffff;
}

.newsanket-cta-btn.secondary:hover{
  background:#ffffff;
  color:#223064;
}

/* ---------------- RESPONSIVE ---------------- */
@media(max-width:768px){
  .newsanket-hero h1{
    font-size:30px;
  }
  .newsanket-content{
    margin-top:-40px;
    padding:30px 22px;
  }
  .newsanket-cta h2{
    font-size:24px;
  }
}