body {
    background: transparent;
    font-family: "Montserrat", sans-serif;
    margin: 0;
    overflow-x: hidden;
    color: #8d97ad;
    font-weight: 300;
}

/* Wrapper for Navbar */
.main_wrapper {
    max-width: 1250px;
    margin: 0 auto;
    width: 100%;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background-color: #fff;
    color: #269ccd;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.sticky {
    background-color: #fff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.contact-info,
.contact-number a:hover {
    color: #6c757d;
}

.contact-number i {
    color: #0077b5;
}

/* Scaling icons on hover */
.nav-item:hover i {
    transform: scale(1.2);
    transition: transform 0.3s ease-in-out;
}

/* Contact number styling */
.contact-number a {
    color: #6c757d;
    font-weight: 500;
}

.nav-item {
    text-align: center;
}

header .logo img {
    width: 70px;
    font-size: 2rem;
    font-weight: bold;
    color: #269ccd;
    z-index: 999;
    opacity: 1;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin: 0 20px;
    color: #6c757d;
}

header nav ul li i:hover {
    transform: scale(1.1);
}

.nav-item a {
    color: #6c757d;
    font-weight: 600;
    text-transform: capitalize;
}

.nav-item a:hover {
    color: #0077b5;
    font-weight: 500;
    text-transform: capitalize;
}

.nav-link:hover {
    color: #333;
}

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #269ccd;
    cursor: pointer;
    margin-left: auto;
}

.logo {
    display: flex;
    align-items: center;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        /* Visible on smaller screens */
    }

    header {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;

    }

    nav ul li a {
        font-size: 2rem;
    }

    .menu li i {
        display: none;
    }

    .nav-item {
        padding: 10px 0;
    }

    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 1);
        color: #fff;
        z-index: 1000;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
    }
}

.menu.active {
    display: flex;
}

/* Carousel styling */
.carousel {
    position: relative;
    height: 80vh;
    z-index: 1;
}

.carousel .carousel-item img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    opacity: 0.85;
}

.carousel-contact {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    text-align: start;
    color: white;
    padding: 20px;
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
}

/* Title styling */
.carousel-contact h2 {
    font-size: 60px;
    line-height: 70px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

.carousel-contact p {
    font-size: 30px;
    margin-bottom: 20px;
    color: #ddd;
}

/* Responsive adjustments */
@media (max-width: 1024px) {

    .carousel-contact h2 {
        font-size: 50px;
        line-height: 60px;
    }

    .carousel-contact p {
        font-size: 24px;
    }

    .carousel-contact {
        width: 80%;
        left: 50%;
    }
}

@media (max-width: 768px) {

    .carousel-contact h2 {
        font-size: 40px;
        line-height: 50px;
    }

    .carousel-contact p {
        font-size: 22px;
    }

    .carousel-contact {
        width: 85%;
        left: 50%;
    }
}

@media (max-width: 576px) {

    .carousel-contact h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .carousel-contact p {
        font-size: 18px;
    }

    .carousel-contact {
        width: 90%;
        left: 50%;
        padding: 10px;
    }

    .carousel .carousel-item img {
        height: 60vh;
    }
}

/* Services Links Container */
.services-links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: none;
}

.service-link {
    display: block;
    padding: 10px 20px;
    font-size: 18px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid #ffffff;
    border-radius: 5px;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.3s ease-in-out;
}

.service-link:hover {
    background: #ffffff;
    color: #333;
    transform: scale(1.05);
}

/* Drop animation */
.carousel-item:nth-child(2) .services-links .service-link:nth-child(1) {
    animation: dropIn 1s ease-in-out 0.5s forwards;
}

.carousel-item:nth-child(2) .services-links .service-link:nth-child(2) {
    animation: dropIn 1s ease-in-out 0.7s forwards;
}

.carousel-item:nth-child(2) .services-links .service-link:nth-child(3) {
    animation: dropIn 1s ease-in-out 0.9s forwards;
}

.carousel-item:nth-child(2) .services-links .service-link:nth-child(4) {
    animation: dropIn 1s ease-in-out 1.1s forwards;
}

.carousel-item:nth-child(2) .services-links .service-link:nth-child(5) {
    animation: dropIn 1s ease-in-out 1.3s forwards;
}

.carousel-item:nth-child(2) .services-links .service-link:nth-child(6) {
    animation: dropIn 1s ease-in-out 1.5s forwards;
}

/* Keyframe for dropping effect */
@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Keep existing carousel styles unchanged */
.carousel {
    position: relative;
    height: 80vh;
}

.carousel .carousel-item img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    opacity: 0.8;
}

.carousela-contact {
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -60%);
    text-align: start;
    color: white;
    padding: 20px;
    border-radius: 10px;
}

/* Services */
.services {
    padding: 20px 20px 60px 20px;
    text-align: center;
}

.TitleComman span {
    display: inline-block;
    width: 100%;
    padding-bottom: 5px;
    color: #8d97ad;
    text-transform: uppercase;
    font-size: 23px;
    font-weight: 500;
    line-height: normal;
}

.TitleComman {
    font-size: 35px;
    line-height: 40px;
    color: #0077b5;
    font-weight: 700;
}

.other_text {
    font-size: 16px;
    color: #444;
    margin: 20px 0;
}

.main_text {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
}

.box_content {
    background: #fff;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.services .img_holder img {
    height: 50px;
    width: 50px;
    margin-right: 15px;
}

.text_holder h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.text_holder p {
    color: #8d97ad;
    font-size: 16px;
    font-weight: 500;
}

.box_content:hover {
    background-color: #59b3d6;
    cursor: pointer;
    transform: scale(1.05);
    color: #fff;
    border: none;
}

@media (min-width: 768px) {
    .main_text {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .main_text {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* Popup Message */
.popup-message {
    display: none;
    background-color: #28a745;
    color: white;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
    border-radius: 4px;
}

.detail-box {
    padding: 20px;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .bg-image {
        height: 200px;
    }

    .contact-form-container {
        padding: 20px;
    }
}

/* About Us */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatUpDown {
    from {
        transform: translateY(0px) translateX(0px);
    }

    to {
        transform: translateY(-50px) translateX(10px);
    }
}

.about_us {
    width: 100%;
    padding: 60px 20px;
    background-color: #f5f8fe;
}

.details_holder {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.floating-sticker img {
    max-width: 80%;
    height: auto;
    transition: transform 0.1s ease-out;
    animation: floatUpDown 3s infinite ease-in-out alternate;
}

.text_holder {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.text_holder h3 {
    font-size: 1.8rem;
}

.text_holder p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .details_holder {
        flex-direction: column;
        text-align: center;
    }

    .floating-sticker img {
        width: 80%;
        max-width: 400px;
        margin-bottom: 20px;
    }

    .text_holder h3 {
        font-size: 1.6rem;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .text_holder h3 {
        font-size: 1.4rem;
        text-align: center;
    }

    .text_holder p {
        font-size: 0.9rem;
        text-align: center;
    }
}


/* footer */
.footer1 {
    font-size: 16px;
    background-color: #f9f9f9;
    color: #6c757d;
}

.footer1 .navbar-nav .nav-link {
    color: #6c757d;
    font-weight: 500;
    text-transform: capitalize;
}

.footer1 .navbar-nav .nav-link:hover {
    color: #269ccd;
}

.footer1 .f1-middle {
    padding: 50px 0 20px 0;
}

.footer1 .f1-middle .col-lg-3 img {
    max-width: 150px;
    height: 120px;
    width: 120px;
}

.footer1 .f1-middle .info {
    font-size: 16px;
}

.footer1 .f1-middle .font-medium {
    font-weight: bold;
    color: #333;
}

.footer1 .general-listing li {
    list-style: none;
    padding: 5px 0;
}

.footer1 .general-listing li a {
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
}

.footer1 .general-listing li a i {
    margin-right: 8px;
}

.footer1 .general-listing li a:hover {
    color: #007bff;
}

.footer1 .f1-bottom-bar {
    border-top: 1px solid #eaeaea;
    padding: 15px 0;
    font-size: 14px;
}

.footer1 .f1-bottom-bar .links a {
    color: #6c757d;
    font-size: 16px;
    margin-right: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer1 .f1-bottom-bar .links a:hover {
    color: #269ccd;
}

.footer1 .f1-bottom-bar .links a i {
    transition: transform 0.3s ease;
}

.footer1 .f1-bottom-bar .links a:hover i {
    transform: scale(1.2);
}


/* Services Section */
.f1-middle h6 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.f1-middle .general-listing {
    display: flex;
    flex-wrap: wrap;
    /* gap: 20px; */
    list-style: none;
    padding: 0;
    margin: 0;
}

.f1-middle .general-listing.two-part li {
    width: 100%;
    font-size: 16px;
}

.f1-middle .general-listing li a {
    color: #6c757d;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.f1-middle .general-listing li a i {
    color: #269ccd;
    margin-right: 10px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.f1-middle .general-listing li a:hover {
    color: #269ccd;
}

.f1-middle .general-listing li a:hover i {
    transform: translateX(5px);
}

.social-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.social-icons {
    display: flex;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #666;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: #ddd;
    transform: scale(1.1);
}

.social-link.facebook {
    color: #3b5998;
}

.social-link.instagram {
    color: #e4405f;
}

.social-link.linkedin {
    color: #0077b5;
}

.services,
.about_us,
.contact {
    position: relative;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-active {
    opacity: 1;
    transform: translateY(0);
}

/* intro Section */
.intro-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    overflow: hidden;
}

@media (max-width: 768px) {
    .intro-section {
        padding: 50px 0;
    }
}

/* Animated Background */
.animated-bg .shape {
    position: absolute;
    animation: float 6s infinite ease-in-out;
}

.shape-circle {
    width: 200px;
    height: 200px;
    background: #269ccd;
    opacity: 0.1;
    border-radius: 50%;
    top: 10%;
    left: 10%;
}

.shape-line {
    width: 300px;
    height: 2px;
    background: rgba(19, 78, 74, 0.1);
    top: 50%;
    left: 30%;
}

.shape-polygon {
    width: 150px;
    height: 150px;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    background: rgba(0, 91, 181, 0.1);
    bottom: 20%;
    right: 15%;
}

/* Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.com_btn {
    text-decoration: none;
    background-color: #005bb5;
    border: none;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.com_btn:hover {
    background-color: #005bb5;
    transform: translateY(-7px);
    color: #fff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-us {
    display: flex;
    justify-content: space-between;
    padding: 50px 10%;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.contact-form,
.contact-details {
    width: 45%;
}

.contact-form h2,
.contact-details h3 {
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 30px;
    /* padding: 40px 0; */
    position: relative;
    animation: fadeIn 1.5s ease;
}

/* Container for the icons */
.social-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 28px;
    color: #333;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.social-icon:hover {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    color: #fff;
}

.social-icon.facebook {
    background-color: #3b5998;
    color: white;
}

.social-icon.twitter {
    background-color: #1da1f2;
    color: white;
}

.social-icon.linkedin {
    background-color: #0077b5;
    color: white;
}

.social-icon.instagram {
    background-color: #e1306c;
    color: white;
}

/* Adding glow effect on hover */
.social-icon:hover::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 1.5s infinite;
}

/* Pulse effect for the glow */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
}

.social-icon i {
    transition: color 0.3s ease;
}

.social-icon:hover i {
    color: #fff;
}

/* Media Queries for Responsive Layout */
@media (max-width: 1200px) {
    .contact-us {
        flex-direction: column;
        align-items: center;
        padding: 40px;
    }

    .contact-form,
    .contact-details {
        max-width: 80%;
        margin-bottom: 30px;
        width: 100%;
    }

    .contact-details {
        text-align: center;
    }

    .contact-details .social-media {
        flex-direction: row;
        align-items: center;
        display: flex;
        justify-content: center;
    }

    .contact-form {
        margin-right: 0;
    }
}

@media (max-width: 768px) {

    .contact-form,
    .contact-details {
        max-width: 100%;
        width: 100%;
    }

    .contact-form {
        margin-right: 0;
    }

    .contact-details {
        text-align: center;
    }

    .contact-details .social-media {
        flex-direction: row;
        align-items: center;
        display: flex;
        justify-content: center;
    }

    .contact-details .social-media a {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {

    .contact-form h2,
    .contact-details h2 {
        font-size: 1.5rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px;
    }

    .contact-form .btn {
        font-size: 0.9rem;
    }

    .contact-details p {
        font-size: 0.9rem;
    }

    .contact-details .social-media a {
        font-size: 1.2rem;
    }
}

.container {
    width: 100%;
    margin: auto;
    text-align: center;
}

.featuresimp {
    display: flex;
    justify-content: space-between;
    /* padding-bottom: 50px; */
}

.feature-boximp {
    z-index: 1;
    transform: translateY(-60px);
    width: 28%;
    cursor: pointer;
    background: white;
    padding: 20px 20px 0 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-align: left;
}

.feature-boximp i {
    font-size: 50px;
    color: black;
    padding: 0 0 0 10px;
}

.feature-boximp h3 {
    font-size: 19px;
    margin-bottom: 20px;
    font-weight: 700;
    font-weight: bold;
    color: #666;
}

.feature-boximp ul {
    list-style: none;
    padding: 0;
}

.feature-boximp ul li {
    color: #666;
    margin: 5px 0;
    font-size: 15px;
}

.feature-boximp ul li::before {
    content: " ";
    background-repeat: no-repeat;
    background-image: url(arrow.png);
    color: #ff4e92;
    margin-right: 8px;
    font-size: 12px;
}

.info-sectionimp {
    position: relative;
    background: #f5f8fe;
}

.info-sectionimp h2 {
    font-size: 22px;
    color: black;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-sectionimp h1 {
    font-size: 28px;
    color: #0077b5;
    font-weight: bold;
}

.info-sectionimp p {
    width: 70%;
    margin: auto;
    color: #8d97ad;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .featuresimp {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .feature-boximp {
        width: 100%;
        margin: 20px 0;
    }

    .info-sectionimp p {
        width: 100%;
    }
}