/* ===================================================  Home Page is Started ============================================================== */


/* Navbar styling */
body{
    background: linear-gradient(135deg, #093028,#237a57); /* Attractive gradient */
}
.navbar {
    background: linear-gradient(135deg, #093028,#237a57); /* Attractive gradient */
    animation: fadeInDown 0.5s ease; /* Apply the animation to the entire navbar */
    transition: top 0.3s ease; /* Smooth transition */
}

/* Make the navbar fixed */
.navbar.fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

/* Hidden state for scrolling up effect */
.navbar-hidden {
    top: -70px; /* Adjust based on your navbar height */
}

/* Navbar animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.navbar-brand {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Navbar text color */
.navbar-dark .navbar-nav .nav-link {
    color: #fff !important; /* White text color for navigation links */
}

/* Logo styling */
.navbar-brand img {
    max-height: 60px; /* Set the maximum height for the logo */
    border-radius: 20px; /* Border-radius for the logo */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

/* Search input styling */
.navbar-form .form-control {
    background: linear-gradient(135deg, #093028,#237a57); /* Attractive gradient */
    color: #fff; /* White text color */
    border-color: #333; /* Dark gray border color */
}

/* Search button styling */
.navbar-form .btn {
    background-color: #fff; /* White background for search button */
    color: #000; /* Black text color */
    border-color: #fff; /* White border color */
}

/* Change the search button color on hover */
.navbar-form .btn:hover {
    background: linear-gradient(135deg, #093028,#237a57); /* Attractive gradient */
    color: #000000; /* Black text color on hover */
    border-color: #333; /* Dark gray border color on hover */
}

/* Style the navigation item */
.nav-item.active {
    margin: 5px;
    border-radius: 5px; /* Border-radius of 5px */
    color: #000; /* Default black text color for nav items */
    
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

/* Add hover effect for nav item */
.nav-item.active:hover {
     
    color: #000; /* Black text color on hover */
    box-shadow: 0px 4px 10px rgb(255, 255, 255); /* Blue shadow on hover */
    transform: translateY(-2px); /* Slight lift effect on hover */
}

/* Style login and register buttons */
.navbar-nav.ml-auto .nav-item {
    margin-left: 10px; /* Adjust the margin between buttons */
}

.navbar-nav.ml-auto .nav-link {
    color: #000; /* Black text color */
    border-radius: 5px; /* Border-radius of 5px */
    padding: 8px 15px; /* Adjust padding for better appearance */
}

/* Change the button color on hover */
.navbar-nav.ml-auto .nav-link:hover {
    
    text-decoration: none; /* Remove underline on hover */
    color: #000; /* Black text color on hover */
    box-shadow: 0px 4px 10px rgb(255, 255, 255); /* Blue shadow on hover */
}

/* Logo hover effect with shadow */
.navbar-brand img:hover {
    
    box-shadow: 0px 4px 10px rgb(255, 255, 255); /* Blue shadow on hover */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}






/* ------------------------------------------------------------------------------------------------------------- */

/* General Section Styling */
.choose {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background: linear-gradient(135deg, #093028,#237a57); /* Attractive gradient */
    color: #fff; /* White text */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Smooth shadow effect */
    transition: all 0.3s ease-in-out;
    height: 520px;
}

/* Typography Styling */
.choose h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.choose p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    color: #f9f9f9;
}

.highlight {
    color: #ffc107; /* Highlight in a soft yellow */
    font-weight: bold;
}

/* Image Styling */
.image-container {
    max-width: 40%;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Smooth shadow effect */
}

.hero-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px #ffffff; /* Adds a shadow to the image */
    border: 2px solid #ffffff; /* Sets a solid black border with a width of 2px */
    transition: transform 0.3s ease-in-out;
}


.hero-image:hover {
    transform: scale(0.98); /* Slight zoom on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .choose {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .content-container {
        margin-bottom: 30px;
    }

    .image-container {
        max-width: 100%;
    }

    .hero-image {
        max-width: 90%;
    }
}

/* ---------------------------------------------------------------------------------------------------------------------------- */

/* Styling for the Join Section */
.join {
    position: relative;
    background-image: linear-gradient(to right top, #093028, #0c4235, #105441, #18674c, #237a57);
    background-size: cover;
    background-position: center;
    height: 380px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Shadow effect */

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    
    color: #fff; /* White text */
    transition: all 0.3s ease-in-out;
}

/* Add an overlay for better text readability */
.join .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.join-content {
    color: #fff;
    z-index: 2; /* Ensure the text is above the overlay */
    padding: 20px;
    max-width: 800px;
}

/* Heading Styling */
.join-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #FFD700; /* Yellow text color */
}


/* Paragraph Styling */
.join-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f9f9f9;
}

/* Button Styling */
.join-content .btn {
    padding: 15px 30px; 
    color: #FFD700;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Button shadow */
}

.join-content .btn:hover {
    color: #028b34;
    background-color: #ffffff; /* Change button color on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .join {
        height: 400px;
    }

    .join-content h1 {
        font-size: 2.2rem;
    }

    .join-content p {
        font-size: 1rem;
    }

    .join-content .btn {
        font-size: 1rem;
        padding: 12px 25px;
    }
}


/* --------------------------------------------------------------------------------------------------------------------- */

/* Metrics Section */
.metrics {
    background-color: #f9fcff;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.metrics-container {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow */
    
    width: 100%;
}

.metrics-container h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.metrics-container h2 span {
    color: #e63946; /* Red color similar to image */
}

.metrics-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.metric-item {
    flex: 1 1 calc(25% - 20px); /* Four equal boxes */
    background-color: #f9fcff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow */
}

.metric-item h3 {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.metric-item p {
    font-size: 2rem;
    color: #e63946;
    margin: 0;
}

@media (max-width: 768px) {
    .metric-item {
        flex: 1 1 calc(50% - 20px); /* Two per row on smaller screens */
    }
}

@media (max-width: 500px) {
    .metric-item {
        flex: 1 1 100%; /* Full width on mobile screens */
    }
}





/* ------------------------------------------------------------------------------------------------------------------------ */

/* Container for the card group */
.card-group.mint {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  /* Styling for individual cards */
  .card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 300px; /* Fixed width for each card */
    max-width: 100%; /* Ensure cards don't overflow the container */
  }
  
  .card-img-top {
    width: 100%; /* Make sure the image covers the card width */
    height: 200px; /* Fixed height for the image */
    object-fit: cover; /* Cover the space while maintaining aspect ratio */
    border-bottom: 1px solid #ddd;
  }
  
  .card-body {
    padding: 1.5rem;
    background-color: #f9f9f9;
  }
  
  .card-title {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1rem;
  }
  
  .card-text {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
  }
  
  .card-text b {
    font-weight: bold;
  }
  
  .card-text small {
    color: #999;
  }
  
  /* Hover effect for cards */
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Responsive design for smaller screens */
  @media (max-width: 768px) {
    .card-group.mint {
      flex-direction: column;
      align-items: center;
    }
  }


  .course-card {
    background-color: #ffffff; /* White background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
    overflow: hidden; /* Ensures child elements follow the rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover transition */
    padding: 20px;
    margin: 15px;
    border: 1px solid #e0e0e0; /* Light border */
}

.course-card:hover {
    transform: translateY(-5px); /* Slightly lift the card on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Deepen shadow on hover */
}

.course-card img {
    width: 100%; /* Full width for image */
    border-radius: 8px; /* Slightly rounded image corners */
}

.course-card h3 {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #333; /* Darker text color */
}

.course-card p {
    color: #666; /* Gray text for description */
    font-size: 1rem;
    line-height: 1.5;
}

/* Optional Button Styling */
.course-card .enroll-button {
    display: inline-block;
    background-color: #007bff; /* Button color */
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.course-card .enroll-button:hover {
    background-color: #0056b3; /* Darken button on hover */
}

.course-img {
    width: 300px; /* Fixed width */
    height: 200px; /* Fixed height */
    object-fit: cover; /* Ensures image scales without distorting */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover transition */
}

.course-img:hover {
    transform: scale(1.05); /* Slightly zooms in the image on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Deepens shadow on hover */
}



  /* ---------------------------------------------------------------------------------------------------------------------------- */
  
.Courses-items {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
}

/* Heading Styling */
.Courses-items h1 {
    font-size: 35px;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 10px;
}

.Courses-items p {
    font-size: 18px;
    color: #cdcdcd;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Grid Styling */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: stretch;
}

/* Course Card Styling */
.course-card {
    background-color: #000000;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e7eaf3;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Course Card Image */
.course-card img {
    width: 120px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

/* Course Title */
.course-title {
    font-size: 24px;
    font-weight: 700;
    color: #067d38;
    margin-bottom: 15px;
}

/* Course Description */
.course-description {
    font-size: 16px;
    color: #2b7a0b; /* Green color */
    margin-bottom: 30px;
    line-height: 1.6;
    padding: 0 15px;
    font-weight: 500; /* Slightly bold text for readability */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0px 4px 8px rgba(196, 195, 195, 0.1); /* Soft shadow */
    transition: transform 0.3s ease-in-out; /* Hover animation */
}

.course-description:hover {
    transform: scale(1.02); /* Slight zoom on hover */
}

/* Explore Button */
.explore-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg,  #067d38,#000000); /* Attractive gradient */
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: auto;
}

.explore-btn:hover {
    background: linear-gradient(135deg,#000000 ,  #067d38); /* Attractive gradient */
    color: white;
    transform: scale(1.05);
}

/* SVG Icon Inside Button */
.explore-btn svg {
    margin-left: 8px;
    vertical-align: middle;
    width: 18px;
    height: 18px;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .Courses-items h1 {
        font-size: 36px;
    }

    .Courses-items p {
        font-size: 16px;
        max-width: 100%;
        padding: 0 20px;
    }

    .course-card {
        padding: 20px;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }

    .explore-btn {
        width: 100%;
        padding: 12px 0;
    }
}

/* ----------------------------------------------------------------------------------------------------------------------  */
/* General Styles for Client Speak Section */
.client-speak {
    background-image: linear-gradient(to right top, #093028, #0c4235, #105441, #18674c, #237a57);
    padding: 40px 20px; /* Spacing around the section */
    text-align: center; /* Center-aligning text */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Heading Styles */
.client-speak h2 {
    font-family: 'Poppins', sans-serif; /* Modern font */
    font-size: 2.5rem; /* Size of the heading */
    color: #ffffff; /* Dark navy color */
    margin-bottom: 10px; /* Space below the heading */
}

/* Client Speak Term Container Styles */
.clientSpeakTerm {
    position: relative; /* Relative positioning for child elements */
    max-width: 800px; /* Maximum width of the client speak term */
    margin: 0 auto; /* Center the container */
    overflow: hidden; /* Hide overflow to keep content in view */
}

/* Client Speak Term Styles */
.clientSpeakTerm-item {
    display: none; /* Hide all items initially */
    padding: 20px; /* Spacing around each item */
    transition: opacity 0.5s ease; /* Smooth transition for opacity */
}

.clientSpeakTerm-item.active {
    display: block; /* Only show active item */
    opacity: 1; /* Fully visible */
}

/* Blockquote Styles */
blockquote {
    font-size: 1.2rem;          /* Font size for the quote */
    font-style: italic;         /* Italics for quotes */
    color: #ffffff;             /* White color for readability */
    background-color: rgba(255, 255, 255, 0.6); /* Semi-transparent background for contrast */
    padding: 20px;              /* Padding around the text */
    border-radius: 8px;         /* Rounded corners */
    
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
}

/* Cite Styles */
cite {
    display: block; /* Display as block */
    font-size: 1rem; /* Smaller font size */
    color: #ffffff; /* Same navy color as heading */
    margin-top: 10px; /* Space above the citation */
}

/* Navigation Styles */
.clientSpeakTerm-navigation {
    margin-top: 20px; /* Space above navigation dots */
}

.dot {
    display: inline-block; /* Inline block for dots */
    height: 10px; /* Dot height */
    width: 10px; /* Dot width */
    margin: 0 5px; /* Space between dots */
    background-color: #ffffff; /* Default dot color */
    border-radius: 50%; /* Circular dots */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s; /* Smooth transition on hover */
}

.dot.active {
    background-color: #ffc107; /* Active dot color */
}

/* Hover effect for dots */
.dot:hover {
    background-color: #ffc107; /* Light blue on hover */
}

/* View All Button Styles */
.view-all {
    margin-top: 20px; /* Space above the button */
}

.view-all a {
    text-decoration: none; /* Remove underline */
    background: linear-gradient(135deg,  #067d38,#000000); /* Attractive gradient */
    color: #fff; /* Text color */
    padding: 10px 20px; /* Spacing inside button */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s; /* Smooth transition on hover */
}

.view-all a:hover {
    background: linear-gradient(135deg, #000000, #067d38); /* Attractive gradient */
}

/* Responsive Design */
@media (max-width: 600px) {
    .client-speak h2 {
        font-size: 2rem; /* Adjust heading size for mobile */
    }

    .clientSpeakTerm-item {
        padding: 15px; /* Less padding on mobile */
    }
}


/* ------------------------------------------------------------------------------------------------------------------- */
.newsletter-section {
    background-color: #ffffff; /* Bright yellow */
    color: #237a57; /* Dark purple text */
    width: 100%;
    max-width: 100%;
    padding: 40px;
    
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.newsletter-image {
    width: 350px;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px #237a57; /* Adds a shadow to the image */
    border: 2px solid #ffffff; /* Sets a solid black border with a width of 2px */
    transition: transform 0.3s ease-in-out; 
}

.newsletter-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-input {
    padding: 10px 15px;
    width: 70%;
    border: 2px solid #237a57;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-button {
    padding: 10px 20px;
    background-color: #237a57;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-button:hover {
    background-color: #237a57; /* Slightly lighter purple */
}

.newsletter-input::placeholder {
    color: #237a57;
    opacity: 0.8;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #237a57; /* Match button hover color */
}

@media (max-width: 480px) {
    .newsletter-title {
        font-size: 1.5rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        width: 100%;
    }
}

/* ------------------------------------------------------------------------------------------------------  */
.social {
    text-align: center;
    padding: 20px;
}

.social h1 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 10px;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tabs a {
    font-size: 14px;
    font-weight: bold;
    background: linear-gradient(135deg, #ffffff , #f5f5f5); /* Attractive gradient */
    border-radius: 5px;
    color: #063824;
    text-decoration: none;
    padding: 5px 10px;
    gap: 20px;
}

.tabs a.active {
    font-weight: bold;
    color: #ffffff;
}

.articles-section {
    display: flex;
    justify-content: space-around;
    padding: 0 10px;
    gap: 25px;
}

.article-card {
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    width: 30%;
    border: 2px solid white; /* White border */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
}

.article-card img {
    width: 100%;
    height: 200px;
}

.article-content {
    padding: 10px;
}

.category {
    background-color: #f5f5f5;
    font-weight: bold;
    font-family: sans-serif;
    border-radius: 5px;
    padding: auto;
    display: inline-block;
    gap: 10px;
    font-size: 12px;
    color: #237a57;
    margin-right: 5px;
}

.article-content h2 {
    font-size: 18px;
    color: #237a57;
    margin: 10px 0;
}

.article-content p {
    font-size: 12px;
    color: #237a57;
}

.view-all-button {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.view-all-button button {
    background-color: #ffd600;
    border: none;
    padding: 10px 20px;
    color: #4d224d;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}

.view-all-button button:hover {
    background-color: #ffcc00;
}

.featured-story {
    background-color: #ffd600;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
}

.featured-story p {
    font-size: 14px;
}

.featured-story a {
    color: #4d224d;
    font-weight: bold;
    text-decoration: none;
}

.featured-story a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .article-card {
        width: 45%; /* Adjust card width on tablet devices */
    }
    .social h1 {
        font-size: 20px;
    }
    .tabs a {
        font-size: 13px;
        padding: 5px 8px;
    }
}

@media (max-width: 768px) {
    .articles-section {
        flex-direction: column;
        align-items: center;
    }
    .article-card {
        width: 80%; /* Adjust card width on smaller devices */
        margin-bottom: 20px;
    }
    .social h1 {
        font-size: 18px;
    }
    .tabs a {
        font-size: 12px;
        padding: 4px 8px;
    }
}

@media (max-width: 480px) {
    .social h1 {
        font-size: 16px;
    }
    .tabs a {
        font-size: 12px;
        padding: 3px 6px;
    }
    .article-card img {
        height: 150px; /* Reduce image height on small screens */
    }
    .view-all-button button {
        padding: 8px 16px; /* Adjust button padding */
    }
    .featured-story p {
        font-size: 12px;
    }
}




/* ========================================================= Topics  Pages Started here ====================================================== */


.topics-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.category-card {
    
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 255, 255); 
    transition: transform 0.2s, box-shadow 0.2s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5); /* More intense blue shadow on hover */
}

.category-card h2 {
    margin-top: 0;
    color: #ffffff;
}

.category-card p {
    font-size: 14px;
    color: #c8c9c9;
}

.category-card img {
    width: 150px;
    height: 150px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.learn-more {
    display: inline-block;
    padding: 10px 15px;
    background-color: #fff;
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.learn-more:hover {
    background-color: #ffffff;
}



/* --------------------------------------------------------------------------------------------------------------------------------- */

/* Styling for the Accessories Section */
.chock.accessories {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    margin: 20px;
    max-width: 100%;
    padding: 20px;
}

.chock-header {
    background-color: #025a37;
    color: #ffffff;
    padding: 10px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 15px 15px 0 0;
    text-align: center;
}

.chock-body {
    padding: 20px;
}

.chock-title {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.chock-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.btn-primary {
    background-color: #0066cc;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #004b99;
}

.chock.accessories:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}




/* Base style for the cards (chock) */
.chock {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    margin: 20px;
    padding: 20px;
    transition: all 0.3s ease-in-out;
}

.chock:hover {
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

/* Header Style */
.chock-header {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
    text-align: center;
}

/* Body Style */
.chock-body {
    text-align: left;
    padding: 10px;
}

.chock-title {
    font-size: 20px;
    font-weight: bold;
    color: #237a57;
    margin-bottom: 10px;
}

.chock-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Button Style */
.btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg,  #0b486b,#ffffff); /* Attractive gradient */
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffffff , #0b486b); /* Attractive gradient */
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .chock {
        padding: 15px;
        margin: 15px;
    }
    
    .chock-header {
        font-size: 22px;
    }
    
    .chock-title {
        font-size: 18px;
    }
    
    .chock-text {
        font-size: 14px;
    }
}





/* ==================================================Technology Page started here ============================================================== */
/* Section styling */
.technology-section {
    padding: 60px 0;
    background-color: #09772e; /* Light gray background for a clean look */
    text-align: center;
    min-width: 95%;
}

/* Heading */
.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff; 
    margin-bottom: 30px;
}


/* Heading */
.section-heading {
    font-size: 28px;
    font-weight: 700;
    color: #ffc107; /* Deep blue heading */
    margin-bottom: 30px;
}

/* List of technologies */
.tech-list {
    list-style-type: disc; /* Bullet points */
    padding-left: 20px; /* Align the bullets nicely */
    text-align: left;
    max-width: 100%;
    margin: 0 auto; /* Center the list */
}

/* Each list item */
.tech-list li {
    font-size: 18px;
    color: #ffffff; /* Dark gray text */
    margin-bottom: 15px; /* Spacing between each point */
    line-height: 1.6; /* Improve readability */
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .tech-list li {
        font-size: 16px; /* Adjust font size for smaller screens */
        margin-bottom: 10px; /* Less margin for compact view */
    }
}




/* Style the carousel container */
.Technology {
  border-radius: 12px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2); /* Soft shadow */
  overflow: hidden; /* Ensure content doesn't overflow */
  margin: 20px auto; /* Center it on the page */
  max-width: 82%; /* Keep it responsive */
  height: 430px;
  transition: all 0.4s ease-in-out; /* Smooth transitions for hover effects */
}









/* Container for the technology section */
.technology-section {
    padding: 60px 0; /* Adjust the padding for top and bottom */
    background: linear-gradient(135deg,  #013c19,#000000);
    box-shadow: 0px 4px 15px rgba(255, 255, 255);
    border-radius: 20px;
    max-width: 100%;
    align-items: center;
    text-align: center;
    margin-left: 30px;
    margin-right: 30px;
}

/* General spacing and layout for the rows */
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the items */
    gap: 30px; /* Add space between items (top, bottom, and sides) */
   
}

/* Individual technology cards */
.col-md-4 {
    width: 30%;
    min-width: 280px;
    background-color: #000000; /* White background */
    box-shadow: 0px 4px 15px rgba(255, 255, 255); /* Soft shadow for depth */
    border-radius: 10px; /* Smooth corners */
    padding: 20px;
    margin-bottom: 30px; /* Adds spacing between rows (top and bottom) */
    transition: all 0.3s ease-in-out;
}

/* Hover effect */
.col-md-4:hover {
    transform: translateY(-5px); /* Subtle lift on hover */
    box-shadow: 0px 6px 20px rgb(255, 255, 255); /* Stronger shadow on hover */
}

/* Headings inside the cards */
.tech-heading {
    font-size: 22px;
    font-weight: 700;
    color: #ffc107; /* Deep blue */
    margin-bottom: 15px;
}

/* Description inside the cards */
.tech-description {
    font-size: 16px;
    color: #ffffff; /* Light gray for text */
    line-height: 1.6;
}

/* Add spacing between boxes on mobile */
@media (max-width: 768px) {
    .col-md-4 {
        width: 100%; /* Stack the items vertically */
        margin-bottom: 20px; /* Increased margin between items */
    }
}








/* Opportunity Section */
.opportunity-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background: linear-gradient(135deg,  #013c19,#000000);
    box-shadow: 0 4px 15px rgba(255, 255, 255);
    border-color: #ffffff;
    border-radius: 20px;
    margin: 30px;
  }
  
  /* Content Section */
  .content {
    max-width: 100%;
  }
  
  h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
  }
  
  .highlight {
    color: #ffc824;
  }
  
  p {
    margin-top: 10px;
    font-size: 18px;
    color: #dedede;
  }
  
  .buttons {
    margin-top: 20px;
  }
  
  .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .btn-primary {
    background-color: #000000;
    color: #fff;
    margin-right: 10px;
  }
  
  .btn-secondary {
    background-color: #f0f0f0;
    color: #0056d2;
    border: 2px solid #1a5d2f;
  }
  
  .btn:hover {
    box-shadow: 0 4px 10px rgba(0, 85, 210, 0.3);
  }
  
  .pro {
    margin-top: 30px;
  }
  
  .pro-link {
    color: #8f5ee7;
    text-decoration: none;
    font-size: 16px;
  }
  
  .pro-link:hover {
    text-decoration: underline;
  }
  
  /* Image and Icon Section */
  .image {
    position: relative;
    display: flex;
    justify-content: center;
    box-shadow: 0px 4px 15px rgba(255, 255, 255);
    border-color: 2px #ffffff;
    align-items: center;
    margin-left: 40px;
  }
  
  .opportunity-img {
    width: 100%;  /* Full width for responsiveness */
    max-width: 350px;  /* Maintain a max width */
    box-shadow: 0px 4px 15px rgba(255, 255, 255);
    border-color: 1px #ffffff;
    height: auto;
    border-radius: 20px;
  }
  
  .icon-container {
    position: absolute;
    top: 0;
    right: -200px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .icon-box {
    background-color: #fff;
    padding: 20px 25px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    min-width: 250px;
    justify-content: space-between;
  }
  
  .icon {
    font-size: 28px;
  }
  
  .icon-box p {
    margin: 0;
    font-size: 16px;
    color: #333;
    margin-left: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 1200px) {
    /* Adjust spacing and layout for medium screens */
    .opportunity-section {
      flex-direction: row;
      padding: 40px;
    }
  
    .icon-container {
      right: -150px;
    }
  }
  
  @media (max-width: 768px) {
    /* Stack content for mobile screens */
    .opportunity-section {
      flex-direction: column;
      padding: 30px;
    }
  
    h1 {
      font-size: 36px;
    }
  
    p {
      font-size: 16px;
    }
  
    .buttons {
      margin-top: 15px;
      flex-direction: column;
    }
  
    .btn {
      width: 100%;  /* Full width buttons on mobile */
      margin: 10px 0;
    }
  
    .image {
      margin-left: 0;
      margin-top: 30px;
    }
  
    .icon-container {
      position: relative;
      right: 0;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 20px;
    }
  
    .icon-box {
      padding: 15px 20px;
      margin: 10px;
      width: 100%;  /* Full width on smaller screens */
      max-width: 280px;
      justify-content: space-between;
    }
  
    .icon {
      font-size: 24px;
    }
  }
  
  @media (max-width: 480px) {
    /* Further scaling for very small screens */
    h1 {
      font-size: 28px;
    }
  
    .icon-box p {
      font-size: 14px;
    }
  
    .btn {
      font-size: 14px;
      padding: 10px;
    }
  }
  
  







 /* Container for blog cards */
.blog-container {
    display: flex;
    flex-direction: column; /* Stack cards vertically on small screens */
    align-items: center; /* Center align items */
}

/* Blog card styling */
.blog-card {
    width: 100%; /* Take full width on small screens */
    max-width: 400px; /* Limit width on larger screens */
    margin: 10px; /* Add margin for spacing */
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.card-title {
    color: #333;
    font-weight: 600;
    font-size: 18px;
    margin: 10px; /* Add margin for spacing */
}

.card-text {
    color: #777;
    font-size: 14px;
    margin: 10px; /* Add margin for spacing */
}

/* Button styling */
.btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    cursor: pointer; /* Add cursor pointer for better UX */
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-card {
        margin: 15px 0; /* Adjust margin for smaller screens */
    }

    .card-title {
        font-size: 16px; /* Slightly smaller title on mobile */
    }

    .card-text {
        font-size: 12px; /* Slightly smaller text on mobile */
    }

    .btn-primary {
        padding: 6px 12px; /* Adjust button padding on mobile */
    }
}

@media (max-width: 480px) {
    .blog-card {
        max-width: 90%; /* Allow cards to be nearly full width */
    }

    h2 {
        font-size: 1.5rem; /* Adjust heading size on mobile */
    }
}





/* ------------------------------------------Tecnology Blog - Tecnology bux ----------------------------------  */
/* Container styling */
.technology-bux-items {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg,  #013c19,#000000);
    box-shadow: 0 4px 15px rgba(255, 255, 255);
    margin-left: 30px;
    margin-right: 30px;
    border-radius: 20px;
}

.technology-bux-items h1 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.technology-bux-items p {
    font-size: 1.1em;
    color: #096f32;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Grid styling */
.technology-bux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
    

}

/* Card styling */
.technology-bux-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.technology-bux-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

/* Image styling */
.technology-bux-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* Title styling */
.technology-bux-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #013c19;
    margin: 15px 0;
}

/* Description styling */
.technology-bux-description {
    font-size: 1em;
    color: #013c19;
    padding: 0 20px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Explore button styling */
.explore-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.explore-btn svg {
    margin-left: 8px;
    width: 18px;
    height: 18px;
}

.explore-btn:hover {
    background-color: #0056b3;
    box-shadow: 0px 4px 8px rgba(0, 91, 187, 0.3);
}

/* Responsive styling for smaller screens */
@media (max-width: 768px) {
    .technology-bux-items {
        padding: 20px;
    }

    .technology-bux-items h1 {
        font-size: 1.8em;
    }

    .technology-bux-items p {
        font-size: 1em;
    }
}






/* ====================================================== Events Page Started here  =========================================================== */

.events-items {
    text-align: center;
    margin: 50px auto;
    padding: 0 20px;
}

.events-items h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.events-items h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.events-items p {
    font-size: 1.2rem;
    color: #e3e3e3;
    margin-bottom: 40px;
}

/* Event Grid Styling */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
}

/* Event Card Styling */
.event-card {
    background-color: #237a57;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 350px;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.event-card img {
    width: 100%;
    height: 200px;
    border-bottom: 2px solid #237a57;
}

/* Event Content */
.event-content {
    padding: 20px;
    text-align: left;
}

.event-title {
    font-size: 1.6rem;
    color: #237a57;
    margin-bottom: 10px;
    font-weight: bold;
}

.event-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Book Button Styling */
.book-btn {
    background-color:white  ;
    color: #067448;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 10px;
}

.book-btn:hover {
    background-color: #237a57;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.book-btn svg {
    width: 16px;
    height: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .events-items h1 {
        font-size: 2rem;
    }

    .event-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .events-items h1 {
        font-size: 1.8rem;
    }

    .events-items p {
        font-size: 1rem;
    }

    .event-title {
        font-size: 1.4rem;
    }
}

 




/* Bollywood Section Styling */
.bollywood-shows-items {
    text-align: center;
    margin: 50px auto;
    padding: 0 20px;
}

.bollywood-shows-items h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffffff; /* Bollywood theme color */
}
.bollywood-shows-items h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffffff; /* Bollywood theme color */
}

.bollywood-shows-items p {
    font-size: 1.2rem;
    color: #d5d5d5;
    margin-bottom: 40px;
}

/* Bollywood Grid Styling */
.bollywood-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
}

/* Bollywood Card Styling */
.bollywood-card {
    background-color: #237a57;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 350px;
}

.bollywood-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.bollywood-card img {
    width: 100%;
    height: 200px;
    border-bottom: 2px solid #237a57; /* Bollywood theme border color */
}

/* Bollywood Content */
.bollywood-content {
    padding: 20px;
    text-align: left;
}

.bollywood-title {
    font-size: 1.6rem;
    color: #237a57;
    margin-bottom: 10px;
    font-weight: bold;
}

.bollywood-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Book Button Styling */
.book-btn {
    background-color: #ffffff;
    color: #237a57;
    border-color: 2px #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.book-btn:hover {
    background-color: #237a57;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.book-btn svg {
    width: 16px;
    height: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bollywood-shows-items h1 {
        font-size: 2rem;
    }

    .bollywood-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .bollywood-shows-items h1 {
        font-size: 1.8rem;
    }

    .bollywood-shows-items p {
        font-size: 1rem;
    }

    .bollywood-title {
        font-size: 1.4rem;
    }
}








/* ======================================================== Analytics Page Started here ===================================================== */

/* General Styling */
.textual-analytics-section {
    text-align: center;
    margin: 50px auto;
    padding: 0 20px;
}

.textual-analytics-section h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffffff; /* Theme color */
}

.textual-analytics-section p {
    font-size: 1.2rem;
    color: #e2e2e2;
    margin-bottom: 40px;
}

/* Grid Layout for Analytics */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    border-color: 2px  #fff;
    box-shadow: #ffffff;
    gap: 20px;
    justify-items: center;
}

/* Analytics Item Styling */
.analytics-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.analytics-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Graph Container */
.graph-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.graph-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text Content Styling */
.text-content {
    padding: 20px;
    text-align: left;
}

.text-content h2 {
    font-size: 1.6rem;
    color: #237a57;
    margin-bottom: 10px;
    font-weight: bold;
}

.text-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .textual-analytics-section h1 {
        font-size: 2rem;
    }

    .analytics-item {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .textual-analytics-section h1 {
        font-size: 1.8rem;
    }

    .textual-analytics-section p {
        font-size: 1rem;
    }

    .text-content h2 {
        font-size: 1.4rem;
    }
}






/* General Styling */
.analytics-chart-section {
    text-align: center;
    margin: 50px auto;
    padding: 0 20px;
    max-width: 97%;
    background-color: #ffffff;
    border-radius: 15px;
}

.analytics-chart-section h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #237a57; /* Theme color */
}

.analytics-chart-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

/* Chart Container */
.chart-container {
    position: relative;
    width: 100%;
    height: 400px; /* Fixed height for the chart */
    margin: 0 auto;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .analytics-chart-section h1 {
        font-size: 2rem;
    }

    .analytics-chart-section p {
        font-size: 1rem;
    }

    .chart-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .analytics-chart-section h1 {
        font-size: 1.8rem;
    }

    .analytics-chart-section p {
        font-size: 0.9rem;
    }

    .chart-container {
        height: 250px;
    }
}





/* General Styling */
.analyticsterm-section {
    text-align: center;
    margin: 50px auto;
    padding: 0 20px;
    max-width: 1000px;
}

.analyticsterm-section h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #237a57;
}

.analyticsterm-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.chart-container {
    position: relative;
    width: 100%;
    height: 400px; /* Fixed height for the chart */
    margin: 0 auto;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .analyticsterm-section h1 {
        font-size: 2rem;
    }

    .analyticsterm-section p {
        font-size: 1rem;
    }

    .chart-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .analyticsterm-section h1 {
        font-size: 1.8rem;
    }

    .analyticsterm-section p {
        font-size: 0.9rem;
    }

    .chart-container {
        height: 250px;
    }
}








/* Section Styles */
.top-states-table-section, .analytics-chart-section {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    max-width: 97%;
    text-align: center;
    margin: 50px auto;
    padding: 0 20px;
    max-width: 97%;
    background-color: #ffffff;
    border-radius: 15px;
}

/* Headings Styles */
h1 {
    font-size: 24px;
    color: #237a57;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    color: #237a57;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Table Styles */
.top-states-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.top-states-table th, .top-states-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.top-states-table th {
    background-color: #3498db;
    color: white;
}

.top-states-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.top-states-table tr:hover {
    background-color: #e0f7fa; /* Light blue on hover */
}

/* Chart Container Styles */
.chart-container {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 600px) {
    h1 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }

    .top-states-table th, .top-states-table td {
        padding: 10px;
    }
}



/* Overall container styling */
.top-cities-table-section {
    margin: 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    border-radius: 15px; /* Rounded corners for the container */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    overflow: hidden; /* Prevent overflow of content */
}
/* Heading styling */
.top-cities-table-section h1 {
    font-size: 28px; /* Larger font size for prominence */
    color: #4CAF50; /* Matching the header color of the table */
    margin-bottom: 10px; /* Space below the heading */
    text-align: center; /* Center-align the heading */
    font-weight: 700; /* Bold text for emphasis */
    text-transform: uppercase; /* Uppercase letters for a professional look */
}

/* Paragraph styling */
.top-cities-table-section p {
    font-size: 16px; /* Standard font size for readability */
    color: #555; /* Dark gray color for contrast */
    margin-bottom: 20px; /* Space below the paragraph */
    text-align: center; /* Center-align the paragraph */
    line-height: 1.5; /* Increased line height for better readability */
    max-width: 600px; /* Limit width for better appearance */
    margin-left: auto; /* Centering */
    margin-right: auto; /* Centering */
}


/* Table styling */
.top-cities-table {
    width: 100%;
    border-collapse: collapse;
}

/* Table header styling */
.top-cities-table th,
.top-cities-table td {
    border: 1px solid #e0e0e0; /* Light gray border for a clean look */
    padding: 15px; /* Increased padding for a spacious feel */
    text-align: center;
    transition: background-color 0.3s; /* Smooth transition for hover effects */
}

/* Header styling */
.top-cities-table th {
    background-color: #4CAF50; /* Green background for the header */
    color: white; /* White text for contrast */
    font-weight: 600; /* Slightly bolder text */
    text-transform: uppercase; /* Uppercase letters for a professional look */
}

/* Even row background color */
.top-cities-table tr:nth-child(even) {
    background-color: #f9f9f9; /* Light gray for even rows */
}

/* Hover effect for rows */
.top-cities-table tr:hover {
    background-color: #e7f3ff; /* Light blue on hover */
    transform: scale(1.01); /* Slightly enlarges the row */
}

/* Table cell styling */
.top-cities-table td {
    font-size: 14px; /* Standard font size */
    color: #333; /* Dark text for readability */
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .top-cities-table th, 
    .top-cities-table td {
        padding: 10px; /* Reduced padding for smaller screens */
        font-size: 12px; /* Slightly smaller font size */
    }
}









/*========================================================= Footer  ==========================================================================*/

.footer {
    background: linear-gradient(135deg, #093028, #237a57); /* Attractive gradient */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    padding: 2rem 1rem;
    color: white;
    font-family: 'Poppins', sans-serif;
}


.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    margin: 1rem;
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.footer-section ul li a:hover {
    color: #b9c0c1;
    text-decoration: underline;
}

.footer-section ul li img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.footer-section ul li a:hover img {
    transform: scale(1.1);
}

.social-links ul {
    display: flex;
    gap: 10px;
}

.social-links ul li {
    display: inline-block;
}

.social-links ul li a {
    color:white;
    text-decoration: none;
    font-size: 20px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.social-links ul li a:hover {
    background: #ffffff;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

.app-badges {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.app-badges a {
    display: inline-block;
    margin: 0 10px;
}

.app-badges img {
    width: 80px; /* Fixed width for small size */
    height: auto; /* Maintain aspect ratio */
    
}

.app-badges img:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
}


.footer-bottom {
    text-align: center;
    margin-top: 1rem;
}

.footer-bottom p {
    color: #ffffff;
    font-size: 12px;
}