* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            /* 🎯 Font Requirement Applied */
            font-family: GeistSans, GeistSans Fallback, sans-serif;
            background: linear-gradient(180deg, #ABD1F3, #ABD1F3, #ABD1F3, #ABD1F3, #ABD1F3, #ABD1F3, #C2E0F9, #C2E0F9, #C2E0F9, #FCFCFF, #FCFCFF);
            min-height: 100vh;
            text-align: center;
            position: relative;
        }

        /* Responsive Images */
        img {
            max-width: 100%;
            height: auto;
        }

        /* Top Announcement Bar */
        .announcement {
            background: #fff;
            font-size: 14px;
            color: #666;
            text-align: center;
            padding: 11px 20px;
            border-bottom: 1px solid #e0e0e0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .announcement span {
            background: #d1e6fa;
            color: #062a5f;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 11px;
            border-radius: 16px;
        }

        .announcement a {
            color: #333;
            font-weight: 600;
            text-decoration: none;
            margin-left: 6px;
        }

        .announcement-links {
            display: flex;
            gap: 20px;
        }

        /* Navbar styling */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0px 20px;
            background-color: #fff;
            border-bottom: 1px solid #e0e0e0;
            position: relative;
            z-index: 100;
        }

        .navbar .logo a {
            text-decoration: none;
            display: block;
        }

        /* Navbar links */
        .nav-links {
            list-style-type: none;
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links li a {
            text-decoration: none;
            color: #111;
            font-size: 16px;
            font-weight: 600;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            /* gap: 5px; */
        }

        .nav-links li a:hover {
            color: #0071e3;
        }

        /* Dropdown styles */
        .dropdown-content {
            display: none; /* Hidden by default */
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #fff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            min-width: 180px;
            padding: 10px 0;
            z-index: 100;
            border-radius: 8px;
            text-align: left;
        }

        .dropdown-content a {
            display: block;
            padding: 10px 20px;
            color: #333;
            font-weight: 500;
        }

        .dropdown-content a:hover {
            background-color: #f1f1f1;
            color: #0071e3;
        }

        /* 🔒 DESKTOP ONLY: Hover to open */
        @media (min-width: 769px) {
            .nav-links li:hover .dropdown-content {
                display: block;
            }
        }

        /* 🔒 MOBILE/JS: Class based toggle */
        .nav-links li.active .dropdown-content {
            display: block;
        }

        .blogs {
            text-decoration: none;
            color: #0071e3;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .blogs:hover {
            color: #005bb5;
        }

        .cta {
            text-decoration: none;
            background-color: #0071e3;
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            font-weight: bold;
            transition: background-color 0.3s;
            white-space: nowrap;
        }

        .cta:hover {
            background-color: #005bb5;
        }

        /* Hamburger Menu Icon */
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: #333;
        }

        /* Hero Section */
        .hero-container {
            max-width: 100%;
            z-index: 2;
            padding: 40px 20px;
            background: linear-gradient(180deg, #FCFCFF, #C2E0F9, #ABD1F3);
        }

        .badge {
            display: inline-flex;
            align-items: center;
            background: white;
            border-radius: 9999px;
            padding: 6px 12px;
            font-size: 12px;
            color: #555;
            letter-spacing: 1px;
            margin-bottom: 20px;
            border: 1px solid #eee;
        }

        .badge strong {
            background: #d1e6fa;
            color: #363333;
            padding: 2px 8px;
            border-radius: 9999px;
            margin-left: 7px;
            font-weight: normal;
            font-size: 11px;
        }

        .hero-title {
            font-size: 48px;
            font-weight: bold;
            color: #111;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-description {
            font-size: 18px;
            color: #333;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }
		
.premium-button {
    /* Layout & Sizing */
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    gap: 10px;
    
    /* Aesthetic: White Theme & Minimalist */
    background-color: #ffffff;
    color: #1a1a1a;
    /* border: 1px solid #e0e0e0; */
    border-radius: 4px; /* Professional slight roundness */
    
    /* Typography */
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    
    /* Smooth Transitions */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 16px rgb(255 255 255);
  }

  .premium-button:hover {
    background-color: #f9f9f9;
    border-color: #d1d1d1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  /* The Single Animation: Subtle Arrow Slide */
  .button-icon {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
  }

  .premium-button:hover .button-icon {
    transform: translateX(5px);
  }

  /* SVG Icon Styling */
  .button-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
  }

        .icon-gray {
            color: #333;
            margin-left: 5px;
        }
		
		.login-cta-mobile {
             display: none;
}

		.login-cta-desktop-cta{
            display: flex;
            gap: 20px;
            align-items: center;
        }

        /* Responsiveness */
        @media (max-width: 768px) {
            .announcement {
                justify-content: center;
                text-align: center;
				padding: 0px 0px 14px 0px;
            }
			
			.playdiv {
				box-shadow: 0 0px 7px rgba(0, 0, 0, 0.1);
                padding: 8px;	
                line-height: 1.5;				
			}
            
            .announcement-links {
                margin-top: 5px;
            }

            .hamburger {
                display: block;
            }

            .nav-links {
                display: none; /* Hidden by default on mobile */
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #fff;
                padding: 20px;
                border-bottom: 1px solid #e0e0e0;
                gap: 20px;
            }

            .nav-links.nav-active { /* Changed class name to avoid conflict */
                display: flex; 
            }

            .nav-links li {
                width: 100%;
                text-align: left;
            }
            
            .nav-links li a {
                justify-content: space-between;
                cursor: pointer;
            }

            .dropdown-content {
                position: static;
                box-shadow: none;
                padding-left: 10px;
                border-left: 2px solid #f1f1f1;
            }
			
			        /* Login and CTA section */
        .login-cta-mobile {
            display: flex;
            gap: 20px;
            align-items: center;
        }
		
		.login-cta-desktop-cta {display:none;}

            .hero-title {
                font-size: 32px;
            }

            .hero-description {
                font-size: 16px;
                max-width: 100%;
            }

            .search-bar input[type="text"] {
                width: 60%;
            }
        }

  /* 1. SLIDER OUTER WRAPPER - Isko center karne ke liye aur sabse upar rakhne ke liye */
    .srv-logo-outer-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        position: relative;
        z-index: 99; /* Iska z-index Fullborder se bada hai */
    }

    /* Slider Container - Max 1200px width */
    .srv-logo-inner-container {
        width: 100%;
        max-width: 1200px;
        overflow: hidden;
        margin: 0 auto;
    }

    .srv-logo-track {
        display: flex;
        width: calc(250px * 14);
        animation: srv-scroll 40s linear infinite;
    }

.srv-logo-wrapper {
    overflow: hidden;
    width: 100%;
}

.srv-logo-track {
    display: flex;
    width: max-content;
    animation: srv-scroll 25s linear infinite;
}

.srv-logo-card {
    width: 9%;   /* Full screen width */
    height: auto;
    flex-shrink: 0;
    margin: 0;
    background: none;
    box-shadow: none;
}

.srv-logo-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Animation */
@keyframes srv-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100vw);
    }
}

    /* 2. FULLBORDER SECTION - Slider ke niche overlap hone wala section */
    .fullborder {
        margin: -76px 25px 0; /* Slider ke piche ghusne ke liye negative margin */
        border-radius: 74px;
        background: linear-gradient(180deg, #ffffff 95%, #C2E0F9 100%);
        position: relative;
        z-index: 10; /* Iska z-index slider se kam hai */
        padding: 130px 0 50px; /* Top padding slider ke niche space ke liye */
        box-shadow: 0 14px 55px 0 rgba(171, 209, 243, 0.4);
    }

.services-label {
    color: rgb(55 125 255);
    letter-spacing: 0.1em;
    font-weight: 500;
    margin: 0 0 2rem;
    font-size: larger;
    text-align: center;
}

/* Unique wrapper to protect other styles */
.srv-container-main {
    font-family: 'Inter', sans-serif;
    max-width: 1200px;
    margin: auto;
    box-shadow: 0 14px 55px 0 #ABD1F3;
    padding: 15px 18px;
    border-radius: 30px;
}

/* 12 Service Grid System */
.srv-tabs-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 20px;
    /* box-shadow: 0 2px 2px rgba(0, 0, 0, 0.08); */
}

.srv-tab-box {
    padding: 20px 10px;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

/* Remove last column border */
.srv-tab-box:nth-child(6n) { border-right: none; }
/* Remove last row border */
.srv-tab-box:nth-last-child(-n+6) { border-bottom: none; }

.srv-tab-box i { font-size: 22px; color: #333; }
.srv-tab-box span { font-size: 16px; font-weight: 500; color: #333; text-align: center; }

/* Active Tab Styling */
.srv-tab-box.active {
    background: #fcfdfe;
    position: relative;
}
.srv-tab-box.active i, .srv-tab-box.active span { color: #0071e3; }
.srv-tab-box.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0071e3;
}

/* Content Area */
.srv-display-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
    padding: 20px;
}

.srv-info-side { flex: 1; }
.srv-info-side h2 {
    font-size: 34px;
    color: #333;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.srv-points-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.srv-points-list li {
    font-size: 17px;
    color: #444;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.srv-points-list li::before {
    content: "•";
    color: #0071e3;
    font-weight: bold;
    font-size: 20px;
}

.srv-action-btn {
    padding: 12px 25px;
    border: 1px solid #0071e3;
    background: #fff;
    color: #0071e3;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.srv-action-btn:hover { background: #0071e3; color: #fff; }

.srv-image-side { flex: 1.2; }
.srv-image-side img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.srv-tab-box:hover span,
.srv-tab-box:hover i {
    color: #0071e3;
}

/* Responsive */
@media (max-width: 992px) {
    .srv-tabs-grid { grid-template-columns: repeat(2, 1fr); border-radius: 14px; }
    .srv-display-flex { flex-direction: column; text-align: center; }
    .srv-points-list li { justify-content: center; }
}

@media (max-width: 992px) {
    .srv-tab-box,
    .srv-tab-box:nth-child(6n),
    .srv-tab-box:nth-last-child(-n+6) {
        border-bottom: 1px solid #e0e0e0;
        border-right: 1px solid #e0e0e0;
        border-left: 1px solid #e0e0e0;
    }
}

    @keyframes srv-scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    @media (max-width: 992px) {
        .srv-flex-content { flex-direction: column; text-align: center; padding: 40px 20px; }
        .srv-list li { justify-content: center; }
        .fullborder { border-radius: 40px; margin: -60px 15px 0; padding-top: 100px; }
    }

     /* Global Styles for responsiveness */
    .container-custom {
        text-align: center;
        padding: 0 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    h2.main-title {
        font-size: 70px;
        margin-top: 6rem;
        color: #333;
    }

    .sub-text {
        margin: 0 auto 1rem;
        max-width: 39rem;
        font-size: 15px;
        color: #666;
    }

    .grid { 
        display: grid; 
        grid-template-columns: repeat(3, 1fr); 
        gap: 10px; 
        width: 100%; 
        margin: 2rem auto 4.9rem; 
        background: linear-gradient(1deg, #FCFCFF, #ABD1F3);
    }

    .tile { 
        background: white; 
        padding: 30px; 
        text-align: center; 
        transition: all 0.3s ease; 
    }
	
	.tile h3 {
    font-size: 30px;
    margin-bottom: 10px;
	font-weight: 100;
    }
	
	.tile p {
    color: #1b1b1b;
    }

    .tile:hover { 
        transform: scale(1.1); 
        background: linear-gradient(93deg, #abd1f300, #abd1f300); 
    }

    h1 { font-size: 2em; margin-bottom: 10px; }
    
    .para-text { padding-top: 30px; }

    /* --- Responsive Queries --- */

    /* Tablet (Screens below 992px) */
    @media (max-width: 992px) {
        .grid { grid-template-columns: repeat(2, 1fr); }
        h2.main-title { font-size: 50px; margin-top: 4rem; }
    }

    /* Mobile (Screens below 600px) */
    @media (max-width: 600px) {
        .grid { grid-template-columns: repeat(1, 1fr); margin: 2rem auto 3rem;}
        h2.main-title { font-size: 35px; margin-top: 4rem; }
        .sub-text { font-size: 14px; }
    }

  .custom-swiper-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 80px;
    flex-wrap: wrap;
  }

  .left-content {
    max-width: 485px;
    background-image: url(image/about.svg);
    padding: 40px 30px 0px;
    border-radius: 12px;
    height: 419px;
  }

  .left-content h2 {
    font-size: 26px;
    font-weight: 800;
    color: #1a0841;
    margin-bottom: 20px;
    text-align: start;
  }

  .left-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
     text-align: start;
  }

  .left-content button {
    background-color: #ffffff;
    color: #0071e3;
    border: 1px solid #0071e3;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
  }

.left-content button:hover {
background-color: #0071e3;
    color: #fff;
}

  .swiper {
    width: 100%;
    max-width: 700px;
  }

  .swiper-slide {
    width: 300px !important;
    height: 350px !important;
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    transition: transform 0.3s, opacity 0.3s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    opacity: 0.3;
    transform: scale(0.9);
  }

  .swiper-slide-active {
    opacity: 1 !important;
    transform: scale(1.1);
    height: 400px;
  }

  .number {
    font-size: 2rem;
    color: #007bff;
    font-weight: bold;
  }

  .title {
    font-weight: 700;
    margin: 10px 0;
  }

  .desc {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
  }

@media (max-width: 768px) {
    .custom-swiper-container {
        padding: 0px 10px;
    }

    .swiper-slide.swiper-slide-active {
        margin-top: 15px;
    }
}

    .section21 {
      text-align: center;
      padding: 48px 20px 0;
      position: relative;
    }
    .section21 h1 {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .section21 p {
      color: #6b7280;
      margin-bottom: 20px;
      font-size: 1rem;
    }
    .btn21 {
      background-color: #0071e3;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 30px;
      font-weight: bold;
      cursor: pointer;
      margin-bottom: 40px;
      transition: background 0.3s;
      box-shadow: 0 4px 8px rgba(91, 77, 255, 0.4);
      font-size: 1rem;
    }
    .btn21:hover {
      background-color: #ABD1F3;
    }

    .scroll-container21 {
      position: relative;
      overflow-x: auto;
      overflow-y: hidden;
      margin: 0 auto;
      max-width: 1100px;
      padding-bottom: 30px;
    }
    .cards-wrapper21 {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      width: max-content;
      padding: 0 27px;
    }
    .card21 {
      background: white;
      border-radius: 16px;
      padding: 20px 10px;
      width: 193px;
      height: 190px;
      flex-shrink: 0;
      box-shadow: 0 2px 8px #d7e6f3;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .icon-wrapper21 {    
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    }
    .icon-wrapper21 i {
      font-size: 16px;
    }
    .card21 p {
      font-size: 0.85rem;
      color: #111827;
      margin: 0;
      line-height: 1.2;
      overflow-wrap: break-word;
    }

    /* Fade Effects */
    .fade-left, .fade-right {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 50px;
      pointer-events: none;
      z-index: 10;
    }
    .fade-left {
      left: 0;
      background: linear-gradient(to right, #ffffff, rgb(255 255 255 / 62%));
    }
    .fade-right {
      right: 0;
      background: linear-gradient(to right, rgb(255 255 255 / 62%), #ffffff);
    }

    /* Hide Scrollbar */
    .scroll-container::-webkit-scrollbar {
      display: none;
    }
    .scroll-container {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

@media (max-width: 768px) {
    .section21 {
        padding: 40px 20px 0;
    }
}
	
/* Wrapper and Header Styles */
  .ch-exp-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 1rem;
    font-family: sans-serif;
    overflow: hidden; /* Prevents horizontal scroll on small devices */
  }

  .ch-exp-header {
    text-align: center;
    max-width: 800px;
    margin-bottom: 40px;
  }

  .ch-exp-header h2 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
    color: #000;
  }

  .ch-exp-header p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 48rem;
  }

  /* Main Container */
  .ch-exp-container {
    display: flex;
    justify-content: flex-start; /* Aligns features to the left */
    align-items: center;
    width: 100%;
    max-width: 831px;
    position: relative;
  }

  /* Features Box */
  .ch-exp-features {
    background: #fff;
    padding: 50px 30px 46px 30px;
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    max-width: 750px; 
    box-sizing: border-box;
  }

  .ch-exp-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
  }

  /* Icons - Merged duplicate colors into one */
  .ch-exp-icon {
    width: 50px;
    height: 50px;
    background-color: #ABD1F3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
  }

  .ch-exp-text {
    text-align: start;
  }

  .ch-exp-text h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
    margin-top: 0;
  }

  .ch-exp-text p {
    font-size: 14px;
    color: #777;
    width: 58%;
    margin: 0;
    line-height: 1.4;
  }

  .ch-exp-hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 20px 0;
    width: 65%;
  }

  /* Overlapping Login Card */
  .ch-exp-card {
    width: 90%;
    max-width: 380px;
    background: #f4f9ff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 14px 55px 0 rgb(201 215 239);
    position: absolute;
    top: 50%;
    right: -50px; /* Adjust this to overlap */
    transform: translateY(-50%);
    box-sizing: border-box;
    z-index: 2;
  }

  .ch-exp-social-btn {
    width: 100%;
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 30px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  .ch-exp-social-btn:hover {
    background: #f5f5f5;
  }

  .ch-exp-icon-img {
    width: 20px;
    height: 20px;
  }

  .ch-exp-divider {
    font-size: 12px;
    color: #aaa;
    margin: 15px 0;
    text-align: center;
    position: relative;
  }

  .ch-exp-divider::before, 
  .ch-exp-divider::after {
    content: '';
    height: 1px;
    width: 38%;
    background: #ddd;
    position: absolute;
    top: 50%;
  }

  .ch-exp-divider::before { left: 0; }
  .ch-exp-divider::after { right: 0; }

  .ch-exp-email-login {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .ch-exp-login-btn {
    padding: 12px;
    border: none;
    background: #0071e3;
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
  }

  .ch-exp-login-btn:hover {
    background: #005bb5;
  }

  /* =========================================
     RESPONSIVE MEDIA QUERIES
     ========================================= */
  
  /* Tablet adjustments */
  @media (max-width: 1024px) {
    .ch-exp-card {
      right: 0px; /* brings the card slightly inside on medium screens */
    }
    .ch-exp-features {
      max-width: 650px;
    }
  }

  /* Mobile adjustments */
  @media (max-width: 768px) {
    .ch-exp-container {
      flex-direction: column;
      align-items: center;
    }
    
    .ch-exp-features {
      padding: 30px 20px;
    }

    .ch-exp-text p, 
    .ch-exp-hr {
      width: 100%; /* Make text and hr full width on mobile */
    }

    /* Change card from absolute to static for mobile */
    .ch-exp-card {
      position: relative;
      top: 0;
      right: 0;
      transform: translateY(0);
      margin-top: -24px;
      width: 100%;
      max-width: 100%;
    }
  }
  
  .blog-section {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  text-align: center;
}

.section-title {
  font-size: 28px;
  color: #000;
  margin-bottom: 20px;
}

.blog-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 15px;
}

.blog-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  width: 320px;
  text-align: left;
  transition: transform 0.3s ease;
}

.blog-card:hover {
    cursor: pointer;
}

.blog-image {
  width: 100%;
  height: 200px; /* ✅ Fixed Height */
  object-fit: cover; /* ✅ Image fit and crop nicely */
  display: block;
}

.blog-content {
  padding: 20px;
}

.blog-category {
  font-size: 12px;
  color: #7b68ee;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 18px;
  color: #222;
  margin: 0;
}

/*  contact section */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 30px 30px; 
  flex-wrap: wrap;
  gap: 10px;
}

/* Left Side */
.contact-left {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  padding: 20px;
}

.contact-left h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 500;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.step img {
  width: 35px;
  height: 35px;
  margin-right: 15px;
  flex-shrink: 0;
}

.step p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  font-weight: bold;
  color: #626262;
  text-align: start;
}


/* Right Side */
.contact-right {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: inset 0px 1px 8px 1px #ABD1F3;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  background: #ABD1F3;
  /* Box-sizing zaroori hai taaki padding width me count ho */
  box-sizing: border-box; 
}

.contact-form textarea {
  resize: vertical;
  height: 120px;
}

.contact-form button {
  width: 150px;
  padding: 12px;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
  border: 1px solid #0071e3;
  background-color: #0071e3;
  color: #fff;
}

.contact-form button:hover {
  background-color: #ffffff;
  color: #0071e3;
}

.white-placeholder::placeholder {
  color: #666;
}

/* --- Naya CSS Code (Password Toggle ke liye) --- */
.password-wrapper {
  position: relative;
  width: 100%;
}

.toggle-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 13px;
  font-weight: bold;
  color: #0071e3;
  user-select: none; /* Text select na ho isliye */
}

.toggle-btn:hover {
    color: #005bb5;
}

  .faq-section {
    max-width: 720px;
    width: 100%;
    margin: 0 auto; 
    padding: 60px 20px;
  }

  .faq-header {
    text-align: center;
    margin-bottom: 10px;
  }

  .faq-header h2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #222;
    margin: 0;
  }

  .faq-header span {
    display: block;
    font-size: 1.2rem;
    color: #0073ff;
    font-weight: 500;
    margin-bottom: 8px;
    font-family: 'Georgia', serif;
    font-style: italic;
  }

  .faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    cursor: pointer;
    text-align: left; /* PC par left hi rahega */
  }

  .faq-item:hover {
    background: #f9fbff;
  }

  .faq-question-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
  }

  .faq-question {
    font-size: 1rem;
    color: #111827;
    font-weight: 500;
  }

  .faq-icon {
    font-size: 1.5rem;
    color: #6b7280;
    transition: transform 0.3s ease;
    line-height: 1;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 0.95rem;
    color: #4b5563;
    text-align: left; /* PC par left */
    line-height: 1.6;
    padding: 0;
  }

  .faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #0073ff;
  }
  
  .faq-item.active .faq-answer {
    padding-top: 15px;
  }

  /* --- Mobile View Adjustments (Specially for Centering) --- */
  @media (max-width: 600px) {

    .faq-header h2 {
      font-size: 1.7rem;
    }

    .faq-question-row {
      justify-content: center;
      text-align: center;
    }

    .faq-question {
      width: 100%;
      text-align: center; /* Question center ho gaya */
      margin-bottom: 5px;
    }

    .faq-icon {
      margin: 0 auto; /* Icon bhi center ho gaya */
    }

    .faq-answer {
      text-align: center; /* Answer center ho gaya */
    }
  }
  
  /* --- Footer Wrapper --- */
    .main-footer-wrapper { width: 100%; position: relative; }

    /* --- 1. Floating Contact Card --- */
    .footer-contact-card {
        margin: 0 auto;
        margin-top: -75px;
        width: 87%;
        padding: 40px 81px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        background: white;
        border-radius: 30px;
        position: relative;
        z-index: 10;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

    .contact-item {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: start;
        margin-bottom: 10px;
        min-width: 250px;
    }

    .contact-item i { color: #0071e3; font-size: 25px; margin-right: 15px; }
    .contact-item div { line-height: 1.5; color: black; }

    /* --- 2. Main Footer Area --- */
    .footer-content {
        background: #fff;
        padding: 80px 80px 20px 80px;
        margin-top: -40px;
    }

    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between; 
       
    }

    /* Column 1: Logo & About */
    .footer-col-about {
        flex: 1;
        min-width: 250px;
        text-align: start;
    }

    .footer-col-about img { width: 100px; margin-top: -10px; display: block; margin-bottom: 15px; }
    .footer-col-about p { font-size: 14px; color: #333; line-height: 1.8; margin: 0; }

    .social-links { margin-top: 15px; display: flex; gap: 10px; }
    .social-links a {
        display: flex; align-items: center; justify-content: center;
        background: #ffffff; color: #000000; width: 40px; height: 40px;
        border-radius: 50%; text-decoration: none; transition: 0.3s;
        box-shadow: 0 0 10px rgb(189 200 215);
    }
    .social-links a:hover { background: #0071e3; color: white; }

    /* --- FIXED COLUMN 2: Useful Links (CENTERED) --- */
    .footer-col-links {
        flex: 1.2; /* Thoda space zyada diya */
        min-width: 250px;
        display: flex;             /* Added Flex */
        justify-content: center;   /* Center Horizontally */
    }

    /* New Wrapper to keep Title and Links aligned together */
    .links-wrapper {
        display: block;
        width: fit-content; /* Jitna content hai utna hi width lega */
    }

    .footer-heading {
        color: #333;
        margin-bottom: 20px;
        position: relative;
        text-align: start;
        font-size: 1.17em;
        font-weight: bold;
    }

    .footer-heading::after {
        content: ''; display: block; width: 40px; height: 2px;
        background: #0071e3; margin-top: 5px;
    }

    .links-container { display: flex; gap: 50px; text-align: start; }
    
    .links-group a {
        display: block; color: #333; font-size: 14px;
        text-decoration: none; transition: 0.3s; margin-bottom: 20px;
    }
    .links-group a:hover { color: #0071e3; transform: translateX(5px); text-decoration: underline; }

    /* Column 3: Subscribe */
    .footer-col-subscribe {
        flex: 1;
        min-width: 250px;
    }
    .footer-col-subscribe p { font-size: 14px; color: #333; line-height: 1.8; margin-bottom: 20px; text-align: start; }
    
    .subscribe-form { position: relative; display: flex; }
    .subscribe-form input {
        flex: 1; padding: 15px; outline: none; font-size: 14px;
        border: 1px solid #bbb; border-top-left-radius: 14px; border-bottom-left-radius: 14px; background: #fff;
    }
    .subscribe-form button {
        background: #0071e3; border: none; padding: 0 20px; cursor: pointer; color: #fff; font-size: 18px;
        border-top-right-radius: 14px; border-bottom-right-radius: 14px;
    }

    /* --- 3. Copyright Bar --- */
    .copyright-bar {
        display: flex; justify-content: space-between; align-items: center;
        flex-wrap: wrap; padding: 20px 80px; background: #fff;
        font-size: 14px; color: #333; border-top: 1px solid #e0e0e0;
    }
    .copyright-links a { color: #333; margin-left: 15px; text-decoration: none; transition: 0.3s; }
    .copyright-links a:hover { color: #0071e3; text-decoration: underline; }

    /* --- RESPONSIVE --- */
    @media screen and (max-width: 1024px) {
        .footer-contact-card { width: 90%; padding: 30px; }
    }

    @media screen and (max-width: 768px) {
        .footer-content, .copyright-bar { padding-left: 20px; padding-right: 20px;padding-top: 30px; }
        .footer-contact-card { flex-direction: column; align-items: center; padding: 20px; width: 95%; margin-top: -74px; box-shadow: none; border-radius: 98px; border: none; }
        .contact-item { justify-content: center; text-align: center; width: 100%; margin-bottom: 20px; flex-direction: column; }
        .contact-item i { margin-right: 0; margin-bottom: 10px; }
        
        .footer-row { flex-direction: column; text-align: center; gap: 35px; }
        .footer-col-about, .footer-col-links, .footer-col-subscribe { text-align: center; }
        
        /* Mobile Reset for Links Alignment */
        .footer-col-links { display: block; } /* Mobile pe block wapis kar diya */
        .links-wrapper { width: 100%; } /* Full width mobile pe */
        .links-container { justify-content: center; text-align: left; } /* Text left aligned but centered block */
        
        .footer-heading { text-align: center; }
        .footer-heading::after { margin: 8px auto 15px auto; }
        .social-links { justify-content: center; }
        .footer-col-about img { margin: 0 auto 15px auto; }
        .subscribe-form { justify-content: center; }
        .copyright-bar { flex-direction: column; gap: 15px; text-align: center; justify-content: center; }
        .copyright-links { display: flex; flex-direction: row; gap: 15px; }
        .copyright-links a { margin-left: 0; }
    }
    
      /* Smooth Scroll ke liye zaroori CSS */
        html.lenis, html.lenis body {
          height: auto;
        }
        .lenis.lenis-smooth {
          scroll-behavior: auto !important;
        }
        .lenis.lenis-smooth [data-lenis-prevent] {
          overscroll-behavior: contain;
        }
        .lenis.lenis-stopped {
          overflow: hidden;
        }
        .lenis.lenis-scrolling iframe {
          pointer-events: none;
        }
		
	@media (max-width: 1024px) {
    .left-content h2 {
        text-align: center;
    }

    .left-content p {
        text-align: center;
    }

    .left-content button {
         display: inline-block;
    }
}

    	/* --- ONLY FOR MOBILE (768px ya usse chhote screen size ke liye) --- */
@media only screen and (max-width: 768px) {
    
    /* 1. Grid structure ko todkar, buttons ko horizontally slide fit karein */
    div.srv-container-main div.srv-tabs-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important; /* Ek hi line me rakhega */
        overflow-x: auto !important; /* Left-to-Right touch drag scroll */
        overflow-y: hidden !important;
        gap: 12px !important;
        padding: 15px 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        
        /* Mobile scroll behavior details */
        -webkit-overflow-scrolling: touch !important; /* iOS smooth inertia */
        scroll-snap-type: x mandatory !important; 
		scrollbar-width: none !important;
    }

    /* 2. Slider Buttons ki layout lock karein (shrink hone se bachegi) */
    div.srv-container-main div.srv-tabs-grid .srv-tab-box {
        flex: 0 0 140px !important; /* Width lock */
        width: 140px !important;
        min-width: 140px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        box-sizing: border-box !important;
        scroll-snap-align: start !important;
    }

    /* 3. Mobile responsive styling scrollbar hide/show */
    div.srv-container-main div.srv-tabs-grid::-webkit-scrollbar {
         height: 4px !important; /* Patli scroll line niche */
        display: block !important; 
    }
    div.srv-container-main div.srv-tabs-grid::-webkit-scrollbar-thumb {
        background: #d1d5db !important;
        border-radius: 10px !important;
    }

    /* 4. Display Flex area ko column responsive layout me convert karein */
    div.srv-container-main .srv-display-flex {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 20px !important;
    }

    div.srv-container-main .srv-info-side, 
    div.srv-container-main .srv-image-side {
        width: 100% !important;
    }

    div.srv-container-main .srv-image-side img {
        width: 100% !important;
        height: auto !important;
        margin-top: 15px !important;
    }
}	