/* Base font styles */
body {
  font-family: 'Open Sans', sans-serif;
  color: #000080;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Headings and Logo */
h1, h2, h3, .logo, .company-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* Navbar styling */



/* Menu toggle button (hidden on desktop) */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Mobile view */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;  /* Show hamburger */
    }

    .nav-links {
        display: none;   /* Hide links by default */
        flex-direction: column;
        width: 100%;
        background-color: #000080;
    }

    .nav-links.show {
        display: flex;   /* Show when active */
    }
}

.navbar {
    width: 100%;
    background-color: #000080;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    flex-wrap: wrap;
    position: relative;   /* ADD this */
    z-index: 9999;        /* ADD this */
}


/* Logo section */
.logo-section {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px; /* smaller size */
    width: auto;
    margin-right: 10px;
}

.company-name {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

/* Navigation links */
.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    padding: 8px 12px;
    transition: background 0.3s;
    line-height: 40px;    /* ADD */
    display: inline-block; /* ADD */
}

.dropdown > a {
    display: inline-block;
    padding: 8px 12px;
    line-height: 40px;  /* ensures "Services" and "More" align */
    color: white;
    text-decoration: none;
}



.nav-links a:hover,
.nav-links a.active {
    background-color: #1d2d44;
    border-radius: 4px;
}

/* Dropdown styling */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1d2d44;
    min-width: 160px;
    z-index: 9999;   /* FIXED */
}

/* Special fix for the "More" dropdown (last one in nav) */
.nav-links .dropdown:last-child .dropdown-content {
    left: auto;   /* Cancel left alignment */
    right: 0;     /* Align to right edge of parent */
}


.dropdown-content a {
    display: block;
    padding: 10px;
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .dropdown-content {
        position: static;
    }
}


/* Carousel Base */
#uttam-banner-carousel {
  position: relative;
  height: 85vh;
  overflow: hidden;
}
.uttam-blurred-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;           /* Soft blur */
  transform: scale(1.05);      /* Prevent edges from showing due to blur */
  z-index: 0;
}

.uttam-slide-active {
  opacity: 1;
  z-index: 2;
}


.uttam-slide-heading {
  font-size: 2.8rem;
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  transform: translateY(40px);
  animation: uttam-fade-up 1.2s ease forwards;
  animation-delay: 0.3s;
}

.uttam-highlight {
  color: #00c194;
  font-weight: bold;
}

.uttam-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.uttam-slide-active {
  opacity: 1;
  z-index: 2;
}

/* Blurred background */


.uttam-animate-text {
  animation: uttam-fade-up 1.2s ease forwards;
}


/* Text Styling */
.uttam-slide-text {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: white;
  max-width: 700px;
  animation: uttam-fade-up 1s ease forwards;
}

#uttam-banner-carousel .uttam-highlight {
  background: linear-gradient(135deg, #00f2fe, #4facfe); /* cyan to blue gradient */
  -webkit-background-clip : text ;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4); /* subtle glow */
}
/* Animation Keyframes */
@keyframes uttam-fade-up {
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

.uttam-centered-hero {
  text-align: center;
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

.uttam-centered-hero h1 {
  font-size: 2.5rem;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
  color: #000080;
}

.uttam-centered-hero p {
  font-size: 1.1rem;
  font-family: 'Open Sans', sans-serif;
  color: #0a1329;
  line-height: 1.8;
}

.uttam-highlight {
  color: #00c194;
  font-weight: bold;
}




.uttam-card-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.uttam-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  width: 300px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.uttam-card:hover {
  transform: translateY(-10px);
}

.uttam-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.uttam-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: #000080;
  margin: 15px 0 10px;
}

.uttam-card p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  padding: 0 20px;
  color: #333333;
  max-width: 80%;
}

.uttam-card-btn {
  display: inline-block;
  margin: 20px 0 25px;
  padding: 10px 20px;
  background-color: #00d184;
  color: white;
  border: none;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.uttam-card-btn:hover {
  background-color: #00c194;
}


.uttam-image-text-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  gap: 40px;
  flex-wrap: wrap;
}

.uttam-img-col {
  flex: 1;
  min-width: 300px;
}

.uttam-img-col img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.uttam-text-col {
  flex: 1;
  min-width: 300px;
}

.uttam-text-col h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: #0f1a38;
  margin-bottom: 15px;
}

.uttam-text-col p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 25px;
}

.uttam-buttons {
  display: flex;
  gap: 15px;
}

.uttam-btn-primary {
  background-color: #00d184;
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s ease;
}

.uttam-btn-primary:hover {
  background-color: #00c194;
}

.uttam-btn-secondary {
  background-color: #000080;
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s ease;
}

.uttam-btn-secondary:hover {
  background-color: #0f1a38;
}


.uttam-services-section {
  padding: 80px 20px;
  background-color: #f4f6f9;
  text-align: center;
}

.uttam-section-heading {
  font-size: 2.2rem;
  font-family: 'Poppins', sans-serif;
  color: #000080;
  margin-bottom: 50px;
}

.uttam-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Exactly 2 columns */
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

.uttam-service-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  min-height: 420px;
}


.uttam-service-card:hover {
  transform: translateY(-8px);
}

.uttam-service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.uttam-service-card h3 {
  font-family: 'Poppins', sans-serif;
  color: #000080;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.uttam-service-card p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 20px;
  padding: 0 10px;
  max-width: 400px;
}

.uttam-service-btn {
  display: inline-block;
  background-color: #00d184;
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.uttam-service-btn:hover {
  background-color: #00c194;
}

/* CSS */
.uttam-call-banner {
  background-image: url('banner_lower.jpg'); 
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 20px;
  text-align: center;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

.uttam-call-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
  padding: 60px 20px;
}

.uttam-call-content {
  max-width: 800px;
  margin: auto;
  animation: fadeInUp 1.5s ease;
}

.uttam-call-icon {
  font-size: 40px;
  color: #ffd700;
  margin-bottom: 20px;
  animation: bounceIn 1s ease;
}

.uttam-call-number {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.uttam-digit {
  display: inline-block;
  animation: slideIn 1s ease;
}

.uttam-call-msg {
  font-size: 18px;
  margin-top: 10px;
  color: #fff;
  animation: fadeIn 2s ease;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0%   { transform: scale(0.5); opacity: 0; }
  50%  { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fund-account-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.fund-account-section h2 {
  font-size: 32px;
  color: #001f4d;
  font-weight: 700;
  margin-bottom: 20px;
}

.fund-account-section p {
  font-size: 16px;
  color: white;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.payment-logos img {
  max-height: 40px;
  object-fit: contain;
}

.fund-button {
  background-color: #00c98d;
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.fund-button:hover {
  background-color: #00b47d;
}


.stats-section {
      background: url('https://www.transparenttextures.com/patterns/white-wall-3.png'), rgba(255, 255, 255, 0.8);
      background-blend-mode: lighten;
      background-size: cover;
      padding: 50px 0;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .stats-container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: center;
      max-width: 1200px;
      width: 90%;
    }

    .stat-box {
      flex: 1 1 200px;
      background: rgba(255, 255, 255, 0.9);
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .stat-box i {
      font-size: 40px;
      color: #0a1329;
      margin-bottom: 10px;
    }

    .stat-number {
      font-size: 36px;
      font-weight: bold;
      color: #222;
    }

    .stat-title {
      font-size: 18px;
      color: #555;
      margin-top: 5px;
    }

    @media (max-width: 768px) {
      .stats-container {
        flex-direction: column;
      }
    }


  #uttam-testimonial-section {
  padding: 60px 30px;
  background: url('banner1.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
}

.uttam-testimonial-heading {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.uttam-testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.uttam-testimonial-box {
  background-color: #001f4d;
  color: white;
  padding: 25px;
  border-radius: 10px;
  max-width: 350px;
  position: relative;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.uttam-testimonial-box::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 40px;
  border-width: 15px 15px 0;
  border-style: solid;
  border-color: #00c8ff transparent transparent transparent;
}

.uttam-testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 25px;
  gap: 15px;
}

.uttam-testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}

.uttam-testimonial-author h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.uttam-testimonial-author p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
}

.uttam-stars {
  font-size: 1.1rem;
  color: #ffcc00;
  margin-top: 4px;
}


  .custom-footer {
  background-color: #000080;
  color: white;
  font-family: Arial, sans-serif;
  padding: 40px 20px 10px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 220px;
}

.footer-column h3,
.footer-column h4 {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.footer-column ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-column p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-app-buttons {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.footer-app-buttons button {
  background-color: #fff;
  color: #000080;
  border: none;
  padding: 6px 15px;
  border-radius: 5px;
  font-size: 13px;
  cursor: pointer;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
  font-size: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
}

.footer-bottom ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 0;
  margin: 0 0 10px;
  font-size: 13px;
}

.footer-bottom p {
  font-size: 12px;
  color: #e0e0e0;
}

li>a{
  color: white;
  text-decoration: none;
}





.report-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  background-color: #000080;
}

/* Centered heading and paragraph */
.report-header {
  text-align: center;
  margin-bottom: 40px;
}

.report-header h2 {
  font-size: 32px;
  color: #7b3f00;
  margin-bottom: 15px;
}

.report-header p {
  font-size: 16px;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Report container */
.report-table {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Iframe and button inside a neat box */
.iframe-wrapper {
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  background: white;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1800px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* The embedded report itself */
.iframe-wrapper iframe {
  width: 100%;
  height: 600px;
  border: none;
  flex-grow: 1;
}

.track-section h3 {
    font-size: 20px;
    color: #222;
    font-weight: normal;
}

.track-section h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #000;
}

.track-cards {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.track-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.track-card i {
    font-size: 40px;
    margin-bottom: 10px;
    color: black;
}

.track-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.download-btn {
    background-color: #27c4a8;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #1ea48b;
}




