body {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", serif;
}

h1,h2,h3,h4,h5,h6 { 
    font-family: "outfit";
}

p {
    font-family: "Open Sans", serif;
}

a {
    text-decoration: none;
    font-family: "poppins", serif;
    color: #fff;
    padding: 7.5px 15px;
    border-radius: 4px;
}

ul li {
    list-style: none;
}

/* Preloader Full-Screen */
.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #001c55; /* Dark Blue */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Loader Box */
.loader {
    font-size: 72px; /* Default size for large screens */
    font-weight: bold;
    color: #FFB30D; /* Vibrant Amber */
    display: flex;
}

/* Dots Animation */
.dot {
    opacity: 0;
    animation: dotAnimation 1.5s infinite;
}

/* Animating dots one by one */
.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.3s; }
.dot:nth-child(3) { animation-delay: 0.6s; }

/* Dot Appearance Animation */
@keyframes dotAnimation {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* Hide Content Initially */
.content {
    display: none;
}

/* 🔹 Responsive Adjustments */
@media (max-width: 1024px) { /* Tablets */
    .loader {
        font-size: 60px;
    }
}

@media (max-width: 768px) { /* Smaller tablets & big phones */
    .loader {
        font-size: 48px;
    }
}

@media (max-width: 480px) { /* Mobile Devices */
    .loader {
        font-size: 36px;
    }
}


/* Scroll to Top Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #001c55; /* Vibrant Amber */
    color: #fff; /* Dark Blue */
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: none; /* Hidden initially */
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s, transform 0.3s;
}

/* Button Hover Effect */
#scrollToTopBtn:hover {
    background-color: #0e6ba8; /* Slightly darker amber */
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #scrollToTopBtn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}




/* HEADER SECTION STARTS */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    height: 60px;
    background-color: #0a2472;
    padding: 0 5%;
    position: relative;
}

a .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.logo .uil-angle-left {
    color: #FFB30D;
    font-size: 24px;
}

/* Search Box */
.navbar .search-box {
    background-color: #fff;
    border-radius: 4px;
    height: 35px;
    width: 600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    gap: 5px;
    max-width: 60%;
}

.navbar .search-box select {
    border: none;
    width: 50px;
    font-family: "Open Sans", serif;
    font-weight: 500;
    background-color: #fff;
    border-right: 1px solid #000;
    cursor: pointer;
}

.navbar .search-box input {
    border: none;
    font-family: "Open Sans", serif;
    font-size: 14px;
    background-color: #fff;
    color: #000;
    outline: none;
    flex: 1;
}

.navbar .search-box input::placeholder {
    color: #000;
}

.navbar .search-box i {
    cursor: pointer;
    color: #000;
}

/* Language Selector */
.navbar .language {
    font-family: "Open Sans", serif;
    border: none;
    border-radius: 4px;
    background-color: #fff;
    outline: none;
    width: 150px;
    height: 30px;
    padding: 5px;
    cursor: pointer;
}

/* ICONS */
.navbar .icons {
    display: flex;
    gap: 15px;
    font-size: 20px;
    cursor: pointer;
}

/* Tooltip Styling */
.icon-container {
    position: relative;
    display: inline-block;
}

.tooltip {
    position: absolute;
    top: 100%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-family: "poppins";
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* Show Tooltip on Hover */
.icon-container:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Feedback Form Popup */
/* Popup Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

/* Popup Content */
.popup-content {
    background: white;
    color: #000;
    padding: 20px;
    width: 600px;
    border-radius: 4px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.popup-content p {
    font-size: 14px;
}

.popup-content label {
    font-size: 14px;
    font-family: "poppins";
    font-weight: 600;
}

.popup-content .uil-info-circle {
    font-size: 18px;
    color: #008000;
}

/* Close Button */
.uil-times {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    padding: 5px;
    cursor: pointer;
    color: #fff;
    background-color: #001c55;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Form Inputs */
input, textarea {
    width: 90%;
    resize: none;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    font-family: "open sans"
}

/* Submit Button */
.form-button {
    /* width: 100%; */
    background: #001c55;
    border: none;
    padding: 10px 20px;
    color: white;
    font-size: 14px;
    font-family: "poppins";
    border-radius: 4px;
    cursor: pointer;
}

.content-form {
    display: flex;
    justify-content: start;
    gap: 20px;
}

/* FORM FEDBACK RESPONSIVE  */

@media (max-width : 768px) {
    .popup-content {
        margin: 20px;
    }
}

/* NOTIFICATION SYSTEM START'S */

.notification-bar {
    display: none;
    position: absolute;
    top: 80px;
    right: 0;
    background-color: #333;
    width: 300px;
    height: 85vh;
    flex-direction: column;
    gap: 10px;
    border-radius: 8px;
}

.header {
    background-color: #001c55;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;

}

.notification-bar p {
    font-family: "poppins";
    font-size: 18px;
    font-weight: 600;
}

.notification-bar button {
    background-color: transparent;
    color: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    font-family: "poppins";
}

.notifaition-content {
    border-bottom: 1px solid #ccc;
    padding: 10px;
}

.notifaition-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: -3px;
}

.notifaition-content p {
    font-size: 14px;
    font-family: "poppins";
    font-weight: 400;
    margin-top: -15px;
}

.notifaition-content .date {
    font-size: 12px;
    font-family: "poppins";
    font-weight: 300;
    margin-top: -05px;
}
/* NOTIFICATION SYSTEM END'S */



/* Navigation Menu */
.navbar ul {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background-color: #333;
    width: 250px;
    height: 100vh;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    border-left: 3px solid #444;
}

.navbar ul li {
    list-style: none;
}

.navbar ul li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    display: block;
    padding: 10px;
    border-radius: 4px;
}

.navbar ul li a:hover {
    background-color: #444;
}

/* Hamburger Menu */
.menu-icon {
    font-size: 24px;
    cursor: pointer;
    display: none;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    display: none;
}

.navbar .search {
    /* display: none; */
}

.navbar .social-icons {
    display: flex;
    gap: 10px; /* Icons ke darmiyan spacing */
    margin-top: 15px;
}

.navbar .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333; /* Default background color */
    color: white;
    text-decoration: none;
    font-size: 16px; /* Icon size */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.navbar .social-icons a:hover {
    transform: translateY(-5px);
}





/* RESPONSIVE DESIGN */

@media (max-width: 1024px) {
    .navbar .search-box {
        width: 50%;
        max-width: 400px;
    }

    .navbar .language {
        width: 130px;
    }


}

@media (max-width: 768px) {

    .navbar ul {
        position: absolute;
        top: 60;
        right: 0;
        left: 0;
        bottom: 0;
        width: 90%;
        height: 100vh;
        border-left: none;
        border-right: 3px solid #444;
    }
    .navbar {
        padding: 0 20px;
    }

    .navbar .search-box {
        display: none;
        width: 100%;
        max-width: 250px;
    }

    .navbar .language {
        display: none;
    }


    .menu-icon {
        display: block;
        color: #fff;
    }

    .navbar ul {
        display: none;
        right: -100%;
        transition: right 0.3s ease-in-out;
    }

    .navbar ul.active {
        right: 0;
    }

    .close-btn {
        display: block;
    }
}

@media (max-width: 480px) {
    .navbar .search-box {
        width: 80%;
        padding: 5px;
    }

    .navbar .search-box select {
        width: 40px;
    }

    .menu-icon {
        font-size: 22px;
    }
}

/* HEADER SECTION ENDS */


/* HERO SECTION START'S */

.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #0e6ba8;
    color: #fff;
}

.hero-section h2 {
    font-size: 16px;
    font-weight: 400;
    font-family: "poppins";
    margin-bottom: -10px;
}

.hero-section h1 {
    font-size: 36px;
    font-family: "outfit";
    font-weight: 500;
}

.hero-section h1 span {
    color: #0a2472;
}

.hero-section p {
    margin-bottom: 40px;
}

.hero-section .hero-btns a {
    background-color: #0a2472;
    color: #0e6ba8;
    padding: 10px 30px;
    border-radius: 4px;
    margin-right: 20px;
    /* font-weight: 600; */
    font-family: "poppins";
}

.hero-section .hero-btns .primary-btn {
    color: #fff;
}

.hero-section .hero-btns .secondry-btn {
    background-color: transparent;
    border: 2px solid #0a2472;
    color: #fff;
    transition: 0.3s;
}

.hero-section .hero-btns .secondry-btn:hover {
    background-color: #0a2472;
    color: #fff;
    transition: 0.3s;
    border-radius: 36px;
}

/* HERO SECTION RESPONSIVE START'S */

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 20px;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .hero-section p {
        font-size: 14px;
        max-width: 100%;
    }

    .hero-section .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .hero-section .hero-btns a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 28px;
    }

    .hero-section h2 {
        font-size: 16px;
    }

    .hero-section p {
        font-size: 13px;
        line-height: 1.4;
    }

    .hero-section .hero-btns a {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* HERO SECTION RESPONSIVE END'S */

/* HERO SECTION END'S */


/* INTRODUCTION SECTION START'S */

.introduction-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50vh;
    padding: 100px;
    margin-top: 50px;
}

.left-column-image {
    width: 50%;
}

.left-column-image img {
    width: 500px;
}

.second-image {
    width: 150px;
    position: absolute;
    top: 100;
    right: 50;
}

/* .left-column-image img .second-image {
    width: 300px;
} */

.right-column-content {
    width: 50%;
}

.right-column-content h3 {
    color: #001c55;
    font-size: 16px;
}

.right-column-content h2 {
    color: #000;
    font-size: 26px;
    font-weight: 600;
    text-transform: capitalize;
}

.right-column-content p {
    font-family: "poppins";
    font-size: 14px;
}

.right-column-content p {
    display: flex;
    /* justify-content: center; */
    align-items: center;
}

.right-column-content p i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #001c55;
    color: #fff;
    font-size: 16px;
    margin-right: 20px;
}

/* INTRODUCTION SECTION END'S */

/* Featured tool Section START'S */
.featured-tools {
    padding: 100px;
    background-color: #f9f9f9;
    text-align: center;
}

.featured-tools h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.featured-tools p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

/* Tools Container (Flex Layout) */
.tools-container {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    gap: 20px;
}

/* Individual Tool Cards */
.tool-card {
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 25%;
    text-align: center;
}

.tool-card img {
    width: 300px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.tool-card h3 {
    font-size: 20px;
    color: #000;
    margin: 10px 0;
}

.tool-card p {
    font-size: 14px;
    font-family: "poppins";
    color: #555;
    margin-bottom: 20px;
}

.cta-button {
    padding: 10px 20px;
    font-size: 14px;
    font-family: "poppins";
    color: #fff;
    background-color: #001c55;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0a2472;
}

/* Media Queries for Responsiveness */

/* Medium Devices (Tablets) */
@media (max-width: 768px) {
    .featured-tools {
        margin: 0px;
        padding: 60px 20px;
    }

    .featured-tools h2 {
        font-size: 28px;
    }

    .featured-tools p {
        font-size: 14px;
    }

    .tools-container {
        gap: 20px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .tool-card {
        padding: 15px;
        width: 100%;
        height: 350px;
        max-width: 350px; /* Allow the cards to be slightly smaller on tablets */
    }

    .tool-card h3 {
        font-size: 18px;
    }

    .tool-card p {
        font-size: 12px;
    }

    .cta-button {
        font-size: 12px;
    }
}

/* Small Devices (Mobile Phones) */
@media (max-width: 480px) {
    .featured-tools {
        padding: 40px 15px;
    }

    .featured-tools h2 {
        font-size: 24px;
    }

    .featured-tools p {
        font-size: 14px;
    }

    .tools-container {
        justify-content: center;
        gap: 20px;
    }

    .tool-card {
        padding: 10px;
        width: 100%;
        max-width: 320px; /* Adjust card size for mobile */
    }

    .tool-card h3 {
        font-size: 16px;
    }

    .tool-card p {
        font-size: 12px;
    }

    .cta-button {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Large Devices (Large Desktops) */
@media (min-width: 1200px) {
    .tools-container {
        gap: 60px;
    }

    .tool-card {
        padding: 25px;
        width: 100%;
        max-width: 350px;
    }

    .tool-card h3 {
        font-size: 22px;
    }

    .tool-card p {
        font-size: 16px;
    }

    .cta-button {
        font-size: 16px;
    }
}

/* Featured tool Section END'S */

/* TOOLS CATEGORIES START'S */
.tool-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    background-color: #001c55;
    padding: 20px 100px;
}

.tool-category .content h2 {
    color: #fff;
}

.tool-category .content p {
    color: #fff;
}

.tool-category .dropdown {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #b8b8b8;
    border-radius: 4px;
    width: 200px;
    height: 50px;
}

.tool-category .dropdown select {
    max-width: 200px;
    background-color: transparent;
    outline: none;
    border: none;
    font-family: "poppins";
    cursor: pointer;
}

/* Responsive design: Adjust layout for smaller screens */

/* For screens 768px and smaller (tablets and mobile) */
@media (max-width: 768px) {
    .tool-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        height: auto;
    }

    .tool-category .content {
        text-align: center;
        margin-bottom: 20px;
    }

    .tool-category .content h2 {
        font-size: 24px;
    }

    .tool-category .content p {
        font-size: 14px;
    }

    .tool-category .dropdown {
        width: 100%;
        height: 45px;
        margin-top: 15px;
    }

    .tool-category .dropdown select {
        width: 100%;
        font-size: 16px;
    }
}

/* For screens 1024px and larger (desktops and larger tablets) */
@media (min-width: 1024px) {
    .tool-container {
        padding: 20px 150px;
    }

    .tool-category .dropdown {
        width: 250px;
        height: 55px;
    }

    .tool-category .dropdown select {
        width: 100%;
        font-size: 14px;
    }
}
/* TOOLS CATEGORIES END'S */



/* HOW IT'S WORKS SECTION START'S */
/* How It Works Section */
.how-it-works {
    background-color: #f4f4f9;
    padding: 50px 20px;
    text-align: center;
  }
  
  .how-it-works .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .how-it-works h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
  }
  
  .how-it-works p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
  }
  
  /* Steps Container */
  .steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }
  
  /* Individual Step */
  .step {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    width: 30%;
    max-width: 350px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    color: #333; /* Keep content text color unchanged */
  }
  
  .step:hover {
    background-color: #007bff;
    color: #fff; /* Step text will change color on hover */
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.2);
    transform: translateY(-5px);
  }
  
  /* Icon Style */
  .step .icon {
    width: 70px; /* Size of the circle */
    height: 70px; /* Size of the circle */
    background-color: #007bff; /* Circle background color */
    border-radius: 50%; /* Makes the background circular */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px; /* Centers the icon horizontally */
    color: white; /* Icon color */
    font-size: 30px; /* Adjust icon size */
    transition: all 0.3s ease; /* Transition effect for hover */
  }
  
  .step:hover .icon {
    background-color: #0056b3; /* Darker background on hover */
  }
  
  .step h3 {
    font-size: 24px;
    color: inherit; /* Keep text color from parent (will be changed on hover if necessary) */
    margin-bottom: 10px;
  }
  
  .step p {
    font-size: 16px;
    color: inherit; /* Keep text color from parent */
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .steps {
      flex-direction: column;
      align-items: center;
    }
  
    .step {
      width: 80%;
      margin-bottom: 20px;
    }
  
    .step h3 {
      font-size: 20px;
    }
  
    .step p {
      font-size: 14px;
    }
  }
  
/* HOW IT'S WORKS SECTION END'S */

/* TOOLS SHOW SECTION START'S */
/* 
.tools-section {
    display: flex;
    padding: 100px;
    gap: 20px;

}

.tools-section .tool-box {
    background-color: #f8f8f8;
    width: 25%;
}

.tools-section .tool-box img {
    height: 200px;
    width: 100%;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

.cont-box {
    padding: 20px;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 8px;
}

.tools-section .tool-box h3 {
    font-size: 20px;
    color: #000;
    font-weight: 600;
}

.tools-section .tool-box p {
    font-size: 14px;
    margin-bottom: 24px;
}

.tools-section .tool-box a {
    font-size: 14px;
        background-color: #0a2472;
}

.tools-section .tool-box a:hover {
    background-color: transparent;
    border: 2px solid #0a2472;
    color: #0a2472;
    transition: 0.3s;
} */


/* TOOLS SHOW SECTION RESPONSIVE START'S */

/* @media (max-width : 768px) {
    .tools-section {
        display: flex;
        flex-direction: column;
        padding: 50px;
    }

    
    .tools-section .tool-box {
    width: 100%;
}
} */
/* TOOLS SHOW SECTION RESPONSIVE END'S */

/* TOOLS SHOW SECTION END'S */

/* FOOTER SECTION START'S */
/* FOOTER SECTION START'S */