  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap');

        /* General Styling */
        body, html {
            margin: 0;
            padding: 0;
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            transition: background-color 0.3s ease;
        }

        .navbar.scrolled {
            background-color: rgba(0, 0, 0, 0.85);
        }

        .navbar-brand img {
            max-height: 50px;
        }

        .nav-link {
            color: #ffffff;
            font-size: 1rem;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        .nav-link:hover, .nav-link.active {
            color: #ffc107;
        }

       

        .search-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .search-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            text-align: center;
            padding: 0 20px;
        }

        .search-content h1 {
            font-size: 3rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 10px;
            line-height: 1.2;
            animation: fadeIn 1s ease-in-out;
            word-wrap: break-word;
        }

        .search-content span {
            font-size: 1.2rem;
            font-weight: 400;
            color: #ffc107;
            display: block;
            animation: fadeInUnderline 1s ease-in-out;
            position: relative;
            margin-top: 10px;
        }

        .search-content span::after {
            content: '';
            display: block;
            width: 0;
            height: 3px;
            background-color: #ffc107;
            margin: 10px auto 0;
            transition: width 0.4s ease-in-out;
        }

        .search-content span:hover::after {
            width: 100%;
        }

        .search-bar {
            margin-top: 20px;
            position: relative;
            width: 100%;
        }

        .search-bar .form-control {
            height: 60px;
            border-radius: 30px;
            padding-left: 20px;
            padding-right: 80px;
            font-size: 1rem;
            border: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .search-bar .form-control:focus {
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
        }

        .search-bar .btn-search {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: #ffc107;
            border: none;
            color: #00192f;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            animation: pulse 1.5s infinite;
        }

        .search-bar .btn-search:hover {
            background: #e0a800;
            color: #ffffff;
        }

        /* Animations */
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUnderline {
            0% {
                opacity: 0;
                transform: translateY(10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
            }
            70% {
                box-shadow: 0 0 0 20px rgba(255, 193, 7, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .search-content h1 {
                font-size: 2rem;
                padding: 10px;
                text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
                line-height: 1.2;
                max-width: 90%;
            }

            .search-content span {
                font-size: 1rem;
            }

            .search-bar .form-control {
                font-size: 0.9rem;
                padding-right: 60px;
            }

            .search-bar .btn-search {
                width: 50px;
                height: 50px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .search-content h1 {
                font-size: 1.5rem;
                letter-spacing: 2px;
                padding: 10px;
                text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
                line-height: 1.1;
                max-width: 100%;
            }

            .search-content span {
                font-size: 0.9rem;
            }

            .search-bar {
                margin-top: 15px;
            }
        }
  
        /* Categories Section */
        .categories-section {
            padding: 50px 20px;
            background: #f5f7fa;
        }

        .categories-section h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 30px;
            position: relative;
            text-transform: uppercase;
        }

        .categories-section h2::after {
            content: '';
            width: 80px;
            height: 3px;
            background: #ffc107;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .category-card {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .image-container {
            padding: 20px;
            background: #f9f9f9;
        }

        .image-container img {
            max-width: 60px;
            margin: 0 auto;
        }

        .card-body {
            padding: 15px;
        }

        .category-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
            text-transform: capitalize;
        }

        .category-price {
            font-size: 1rem;
            color: #28a745;
            margin-bottom: 10px;
        }

        .subcategories {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .subcategories li {
            font-size: 0.9rem;
            color: #0056b3;
            margin-bottom: 5px;
        }

        .subcategories li a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        .subcategories li a:hover {
            color: #ffc107;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .categories-section {
                padding: 30px 10px;
            }

            .categories-section h2 {
                font-size: 1.5rem;
            }

            .category-title {
                font-size: 0.9rem;
            }

            .category-price {
                font-size: 0.8rem;
            }
        }
        .footer {
            background-color: #01182c;
            color: #ffffff;
            padding: 40px 20px;
        }

        .footer h5 {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .footer a {
            color: #ffffff;
            text-decoration: none;
            font-size: 0.9rem;
        }

        .footer a:hover {
            color: #ffc107;
        }

        .footer .social-icons a {
            font-size: 1.5rem;
            margin-right: 15px;
            color: #ffffff;
        }

        .footer .social-icons a:hover {
            color: #ffc107;
        }

        .finance-calculators {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .finance-calculators h5 {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 15px;
            text-align: center;
        }

        .finance-calculators ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

        .finance-calculators ul li {
            background-color: #ffffff;
            color: #000000;
            font-size: 0.9rem;
            font-weight: 500;
            border-radius: 10px;
            padding: 10px 15px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .finance-calculators ul li:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
        }

        .finance-calculators ul li a {
            color: #01182c;
            text-decoration: none;
            font-weight: bold;
        }

        .finance-calculators ul li a:hover {
            color: #ffc107;
        }

        .footer-bottom {
            text-align: center;
            padding: 20px 20px;
            font-size: 0.9rem;
            margin-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .footer-bottom span {
            display: block;
            margin-bottom: 5px;
            color: #ffffff;
        }

        .footer-bottom .contact {
            font-size: 0.9rem;
            margin-top: 5px;
        }

       .whatsapp-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 9999;
}

        .whatsapp-icon:hover {
            background-color: #1ebc5a;
        }

        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #ffc107;
            color: #01182c;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .back-to-top:hover {
            background-color: #e0a800;
        }

        @media (max-width: 576px) {
            .finance-calculators ul {
                flex-direction: column;
                align-items: center;
            }

            .finance-calculators ul li {
                width: 90%;
            }
        }
		/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
    height: 12px; /* Height of the scrollbar for horizontal scrolling */
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FFC72C, #FFA500); /* Gradient for the thumb */
    border-radius: 10px; /* Rounded edges for the thumb */
    border: 3px solid transparent; /* Adds space around the thumb */
    background-clip: padding-box; /* Keeps the gradient inside the border */
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #FFA500, #FFC72C); /* Hover effect */
    border-color: rgba(255, 255, 255, 0.3); /* Slight transparency on hover */
}

::-webkit-scrollbar-track {
    background: #00192F; /* Background for the scrollbar track */
    border-radius: 10px; /* Rounded edges for the track */
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3); /* Adds a subtle shadow */
}
.btn-appointment {
            background-color: #ffc72c;
            color: #00192f;
            font-weight: bold;
            border-radius: 20px;
            padding: 8px 15px;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .btn-appointment:hover {
            background-color: #0f4c81;
            color: #ffffff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .btn-appointment i {
            margin-right: 5px;
        }              .info-section {
            background: linear-gradient(90deg, #fff8d6, #fff5c6);
            padding: 30px 40px;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin: 30px auto;
            max-width: 1200px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .info-icon {
            background: #ffc107;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: white;
            font-size: 1.8rem;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .info-content {
            flex: 1;
            text-align: center;
        }

        .info-content h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #00192f;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .info-content ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .info-content ul li {
            display: flex;
            align-items: center;
            color: #00192f;
            font-size: 1rem;
            font-weight: 500;
        }

        .info-content ul li i {
            color: #ffc107;
            font-size: 1.2rem;
            margin-right: 10px;
        }

        /* Hover Effect */
        .info-icon:hover {
            background: #e0a800;
            transform: scale(1.1);
            transition: all 0.3s ease;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .info-section {
                flex-direction: column;
                text-align: center;
                padding: 20px 20px;
            }

            .info-content h3 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .info-content ul li {
                font-size: 0.9rem;
            }

            .info-content ul li i {
                font-size: 1rem;
            }
        }        .testimonial-section {
            padding: 50px 20px;
            background-color: #fff;
        }

        .testimonial-section h2 {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 30px;
            color: #333;
        }

        .carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-item {
            display: flex;
            align-items: center;
            gap: 20px;
            justify-content: center;
        }

        .testimonial-box {
            background-color: #00192f;
            color: #ffffff;
            border-radius: 15px;
            padding: 20px;
            flex: 1;
            text-align: left;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            max-width: 700px;
        }

        .testimonial-box p {
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .testimonial-box i {
            color: #ffc107;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .testimonial-image {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .testimonial-image img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .testimonial-name {
            font-weight: bold;
            font-size: 1rem;
            color: #333;
            margin-top: 10px;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #ccc;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background-color: #00192f;
            color: #fff;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            border: none;
            margin: 5px;
        }

        .carousel-indicators .active {
            background-color: #00192f;
        }

        @media (max-width: 768px) {
            .carousel-item {
                flex-direction: column;
            }

            .testimonial-box {
                text-align: center;
            }
        }    
        .form-control {
            height: 50px;
            font-size: 1rem;
        }
        .form-control:focus {
            box-shadow: none;
            border-color: #ffc107;
        }
        .btn-primary {
            background-color: #ffc107;
            border: none;
            font-weight: bold;
            font-size: 1rem;
            height: 50px;
            border-radius: 25px;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: #e0a800;
        }
        .form-icon {
            position: absolute;
            top: 50%;
            left: 15px;
            transform: translateY(-50%);
            color: #6c757d;
        }
        .form-group {
            position: relative;
            margin-bottom: 20px;
        }
        .text-center a {
            color: #ffc107;
            text-decoration: none;
            font-weight: bold;
        }
        .text-center a:hover {
            text-decoration: underline;
        }
        .alert {
            font-size: 0.9rem;
        }        .services-section {
            padding: 50px 20px;
        }

        .services-section h2 {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 30px;
            text-transform: uppercase;
        }

        .services-section h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            margin: 10px auto;
            background-color: #ffc107;
        }

        .card {
            border: none;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .card img {
            max-height: 80px;
            margin: 10px auto;
        }

        .card-title {
            font-size: 1.2rem;
            font-weight: bold;
            color: #333;
        }

        .card-price {
            font-size: 1rem;
            color: #28a745;
        }
 
        .form-control {
            height: 50px;
            font-size: 1rem;
        }
        .form-control:focus {
            box-shadow: none;
            border-color: #ffc107;
        }
        .btn-primary {
            background-color: #ffc107;
            border: none;
            font-weight: bold;
            font-size: 1rem;
            height: 50px;
            border-radius: 25px;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: #e0a800;
        }
        .form-icon {
            position: absolute;
            top: 50%;
            left: 15px;
            transform: translateY(-50%);
            color: #6c757d;
        }
        .form-group {
            position: relative;
            margin-bottom: 20px;
        }
        .text-center a {
            color: #ffc107;
            text-decoration: none;
            font-weight: bold;
        }
        .text-center a:hover {
            text-decoration: underline;
        }
        .alert {
            font-size: 0.9rem;
        }
        
    /* Full-width subscribe section */
    .subscribe-section {
background: hsla(208, 33%, 21%, 1);
      color: #fff;
      padding: 60px 20px;
      text-align: center;
    }
    .subscribe-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .subscribe-section p {
      font-size: 1.25rem;
      margin-bottom: 30px;
    }
    /* Subscription form styling */
    .subscribe-form .form-control {
      height: 50px;
      font-size: 1.1rem;
      border: none;
      border-radius: 0;
    }
    .subscribe-form .btn {
      height: 50px;
      font-size: 1.1rem;
      border: none;
      border-radius: 0;
      background-color: #FFA725;
      color: #FFF;
      font-weight: 600;
      transition: background-color 0.3s;
    }
    .subscribe-form .btn:hover {
      background-color: #000d1a;
    }
    @media (max-width: 576px) {
      .subscribe-section h2 {
        font-size: 2rem;
      }
      .subscribe-section p {
        font-size: 1rem;
      }
    }
      /* Blog Card */
    .blog-card {
      background: #fff;
      border: none;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
      margin-bottom: 1rem;
    }
    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }
    .blog-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: opacity 0.3s;
    }
    .blog-card:hover img {
      opacity: 0.9;
    }
    .blog-content {
      padding: 1.5rem;
    }
    .blog-date {
      font-size: 0.85rem;
      color: #6c757d;
      margin-bottom: 0.5rem;
    }
    .blog-title {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }
    .blog-excerpt {
      font-size: 1rem;
      color: #495057;
      margin-bottom: 1rem;
      height: 3.5rem; 
      overflow: hidden;
    }
    .read-more {
      font-weight: 600;
      color: #28a745;
      transition: color 0.3s;
      text-decoration: none;
    }
    .read-more:hover {
      color: #1e7e34;
    }
    /* Carousel Items */
    .carousel-item {
      padding: 0 1rem;
    }
    .carousel-inner {
      margin-left: -1rem;
      margin-right: -1rem;
    }
.btn.btn-primary12 {
  background: linear-gradient(45deg, #007bff, #0056b3); /* Blue gradient */
  color: #fff;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.btn-primary12:hover {
  background: linear-gradient(45deg, #0056b3, #003f7f);
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn.btn-primary12:active {
  transform: scale(0.98);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
/* Subscribe Newsletter Container */
.subscribe-newsletter {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

/* Heading inside Subscribe Section */
.subscribe-newsletter h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #00192f;
  margin-bottom: 15px;
}

/* Email Input Styling */
.subscribe-newsletter .form-control {
  border: 1px solid #ccc;
  border-radius: 50px;
  padding: 0.5rem 1rem;
}

/* Custom Subscribe Button */
.btn.btn-primary12 {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.btn-primary12:hover {
  background: linear-gradient(45deg, #0056b3, #003f7f);
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn.btn-primary12:active {
  transform: scale(0.98);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
