@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* theme color  */

:root {
    --primary-color: #023047;
    --secondary-color: #00687e;
}

/* font colors  */

:root {
    --gray-font: rgb(145, 145, 145);
    --white-font: #fff;
    --dark-font: #1b1b1b;
    --light-font: #e6e6e6;
}

/* background color  */

:root {
    --light-back: #fff;
    --gray-back: #eeebeb;
}

* {
    font-family: "Poppins", sans-serif;
    color: var(--dark-font);
}

/******************* global component styling *************************** */

.heading-1 {
    font-size: 47px;
    font-weight: 700;
    line-height: 57px;
}

.heading-2 {
    font-size: 34px;
    line-height: 44px;
    font-weight: 700;
}

.heading-3 {
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
}

.theme-text {
    color: var(--secondary-color);
}

img.border-img {
    border: 14px solid var(--primary-color);
    background: white;
    padding: 10px;
    box-shadow: 4px 5px 3px #00000061;
}

button.swal2-confirm.swal2-styled {
    background: var(--primary-color);
}

.theme-light-bg {
    background-color: var(--gray-back);
}

.tagline {
    font-size: 20px;
}

.para {
    font-size: 16px;
    line-height: 29px;
}

.lg-para {
    font-size: 18px;
    line-height: 32px;
}


.theme-dark-btn {
    border-radius: 50px;
    background-color: var(--primary-color);
    text-decoration: none;
    padding: 7px 17px;
    color: var(--white-font);
    position: relative;
    overflow: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.theme-dark-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.4),
            rgba(255, 255, 255, 0));
    transition: all 1.2s ease;
}

.theme-dark-btn:hover::before {
    left: 100%;
}

.theme-dark-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-font);
}



.theme-light-btn {
    border-radius: 50px;
    background-color: var(--light-back);
    text-decoration: none;
    padding: 7px 17px;
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
    font-weight: 500;
}

.section {
    padding: 60px 0px;
}

button,
a {
    cursor: pointer !important;
}


.theme-check-list {
    list-style: none;
    padding-left: 0;
}

.theme-check-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
    font-size: 18px;
}

.theme-check-list li::before {
    content: "\F270";
    /* Bootstrap's Unicode for check-circle icon */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    /* Change this color if needed */
    font-size: 18px;
    font-weight: bold;
}

.corner-effect {
    position: relative;
    z-index: 1;
    /* Ensure content has a higher z-index than the pseudo-elements */
}

/* Top-right diamond */
.corner-effect::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-color: var(--secondary-color);
    /* Dark navy color */
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: -1;
    /* Send the diamond to the back */
}

/* Bottom-left diamond */
.corner-effect::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background-color: var(--secondary-color);
    /* Dark navy color */
    clip-path: polygon(0 100%, 0 0, 100% 100%);
    z-index: -1;
    /* Send the diamond to the back */
}


/******************* Global Navbar Styling  ****************/
.navigation-bar {
    background-color: var(--light-back);
    box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.137);
    padding: 0;
}

.navigation-bar .navbar-brand img {
    max-width: 150px;
}

.navigation-bar .navbar-nav>.nav-item a {
    padding: 7px 20px !important;
}

.navigation-bar .nav-link {
    font-size: 17px;
    font-weight: 500;
    color: var(--gray-font);
}

.navigation-bar .nav-link.active {
    color: var(--primary-color) !important;
    border-bottom: 0px solid var(--primary-color);
    border-radius: 0%;
    box-shadow: 1px 2px 5px lightgray;
}

.navigation-bar .dropdown-menu {
    min-width: 15rem;
    padding: 0;
}

.navigation-bar .dropdown-menu .dropdown-item {
    color: var(--primary-color);
    font-size: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.navigation-bar .dropdown-menu .dropdown-item:active,
.navigation-bar .dropdown-menu .dropdown-item:hover {
    color: var(--white-font);
    font-size: 15px;
    background-color: var(--primary-color);
}

@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        cursor: pointer;
    }

    .nav-item.dropdown {
        cursor: pointer !important;
    }

    .navbar-nav .nav-item.dropdown .dropdown-toggle {
        pointer-events: none;
    }
}


/* ******************* Hero Section Styling Start ************************** */

.hero-section {
    padding: 8% 0 6% 0;
    background-image: linear-gradient(to top, rgba(0, 53, 62, 1), rgba(2, 54, 107, 0) 60%),
        /* Darker at the bottom */
        linear-gradient(rgba(62, 199, 231, 0.0), rgba(255, 255, 255, 0.9)),
        /* Light overlay */
        url("../images/hero-bg-2.jpg");
    /* Background image */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}



/* SWIPER */

.swiper {
    width: 300px;
    height: 400px;
}

.swiper-slide {
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    user-select: none;
}

.swiper-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-position {
    object-position: 50% 0%;
}

.overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #0f2027, transparent, transparent);
    background-repeat: no-repeat;
    background-size: cover;
}

.overlay span {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    padding: 7px 18px;
    margin: 10px;
    border-radius: 20px;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.095);
    box-shadow: inset 2px -2px 20px rgba(214, 214, 214, 0.2),
        inset -3px 3px 3px rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(74px);
}

.overlay h2 {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0 0 20px 20px;
}

.hero-logos {
    margin-top: 40px;
}

/* brand slider stylig  */

.clients-section {
    margin-top: 90px;
}

.clients-section .slick-list.draggable {
    width: 100%;
}

.clients-section .slick-track {
    width: 100% !important;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.brand-slider img.slick-slide {
    padding: 10px 30px;
}

.brand-slider img {
    filter: brightness(0.2) invert(1);
}

.about-publish-slider .brand-slider img {
    filter: none !important;
}

.about-publish-slider {
    margin: 0 !important;
}

.hero-slider .swiper,
.port-slider,
.brand-slider,
.testimonial-slider {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
}

.brand-slider.slick-initialized,
.port-slider.slick-initialized,
.hero-slider .swiper-initialized,
.testimonial-slider.slick-initialized {
    visibility: visible;
    opacity: 1;
}

/* quality time line section  */



.quality-timeline .container {
    padding: 50px 0;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
}

.quality-timeline .container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -1px;
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    z-index: -2
}

.quality-timeline .timeline-block {
    width: -webkit-calc(50% + 8px);
    width: -moz-calc(50% + 8px);
    width: calc(50% + 8px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    clear: both;
}

.quality-timeline .timeline-block-right {
    float: right;
}

.quality-timeline .timeline-block-left {
    float: left;
    direction: rtl
}

.quality-timeline .marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #F5F7FA;
    background: var(--secondary-color);
    margin-top: 10px;
    z-index: 0;
}

.quality-timeline .timeline-content {
    width: 95%;
    padding: 0 15px;
    color: #666
}

.quality-timeline .timeline-content h3 {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 25px;
    font-weight: 600;
    color: var(--primary-color);
}

.quality-timeline .timeline-content span {
    font-size: 15px;
    color: #a4a4a4;
}

.quality-timeline .timeline-content p {
    font-size: 17px;
    line-height: 1.6em;
    word-spacing: 1px;
    color: #888;
}


@media screen and (max-width: 768px) {
    .quality-timeline .container:before {
        left: 8px;
        width: 2px;
    }

    .quality-timeline .timeline-block {
        width: 100%;
        margin-bottom: 30px;
    }

    .quality-timeline .timeline-block-right {
        float: none;
    }

    .quality-timeline .timeline-block-left {
        float: none;
        direction: ltr;
    }
}


.quality-timeline .timeline-content {
    padding: 20px !important;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    box-shadow: 0px 10px var(--secondary-color);
    text-align: left !important;
}

/* New portfolio gallery */

.portfolio-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -10px;
    /* Adjusts the container spacing */
}

.portfolio-gallery a {
    flex: 1 1 calc(20% - 20px);
    /* Default for larger screens */
    margin: 10px;
    /* Adds spacing between images */
    overflow: hidden;
    /* Ensures no overflow */
}

.portfolio-gallery img {
    width: 100%;
    /* Ensures images are responsive */
    height: auto;
    /* Maintains aspect ratio */
    transition: transform 0.3s;
    /* Adds a smooth hover effect */
}

.portfolio-gallery img:hover {
    transform: scale(1.05);
    /* Slightly zooms the image on hover */
}

/* FancyBox styling */
.fancybox-inner * {
    color: white !important;
}

/* testimonial section  */

/* Testimonial Slider Styles */
.testi-sec .testimonial-card {
    background-color: var(--gray-back);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    margin: 20px;
    border: 3px solid var(--primary-color);
    cursor: pointer;
    transition: 0.4s;
}

.testi-sec .testimonial-card:hover {
    background-color: var(--secondary-color);
    color: white !important;
}

.testi-sec .testimonial-card:hover * {
    color: var(--white-font);
}

.testi-sec .testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
    padding: 4px;
}

.testi-sec .quote-icon {
    font-size: 80px;
    line-height: 0;
    color: var(--secondary-color);
}

.testi-sec .testimonial-name {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}

.testi-sec .testimonial-stars i {
    font-size: 22px;
    color: var(--primary-color);
}

.testi-sec .testimonial-text {
    font-size: 16px;
    color: #666;
    font-style: italic;
}

/* Slick Dots Customization */
.testi-sec .slick-dots li button:before {
    font-size: 15px;
    color: var(--primary-color);
}

.testi-sec .slick-dots li.slick-active button:before {
    color: #3f3d56;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .testi-sec .testimonial-card {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .testi-sec .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .testi-sec .testimonial-name {
        font-size: 16px;
    }

    .testi-sec .testimonial-text {
        font-size: 14px;
    }
}

p.testimonial-text {
    height: 70px;
}


/* counter sec styling  */

.counter-card {
    padding: 34px 15px 20px 15px;
    border: 1px solid var(--primary-color);
    border-bottom: 9px solid var(--secondary-color) !important;
    border-radius: 6px;
    text-align: center;
    background-color: var(--light-back);
    box-shadow: 3px 4px 5px lightgray;
}

.counter-card .counter-number {
    font-size: 46px;
    line-height: 56px;
    font-weight: 700;
}

.counter-card .counter-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: var(--secondary-color);
}


/* join sec styilng  */


.join-us-sec {
    padding: 60px 0px;
    background-image: linear-gradient(rgba(2, 48, 71, 0.9),
            /* Darker version of the color */
            rgba(2, 48, 71, 0.7)),
        url("../images/join-bg.PNG");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.join-us-sec .join-btn-sec .theme-light-btn {
    font-size: 25px;
    font-weight: 700;
    padding: 15px 30px;
    transition: 0.7s;
}

.join-us-sec .join-btn-sec .theme-light-btn:hover {
    opacity: .7;
}

.join-btn-sec .join-btn-heading h2.heading-2 {
    font-weight: 900;
}



/******************* services ection styling  ************************/

.service-sec-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    height: 100%;
    cursor: pointer;
}

.service-sec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-sec-icon {
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    box-shadow: 3px 4px 5px lightgray;
}

.service-sec-icon i {
    color: white;
}

.service-sec-body {
    flex-grow: 1;
}

.service-sec-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-sec-text {
    color: #555;
}

/* member section stylign  */


.member-sec .member-info {
    text-align: center;
    background: var(--primary-color);
    padding: 150px 10px 10px 10px;
    border-radius: 15px;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
    box-shadow: 3px 4px 5px lightgray;
    transition: .7s;
    border: 2px solid var(--primary-color);
}

.member-sec .member-info p.para {
    color: var(--white-font);
    font-weight: 500 !important;
}

.member-sec .member-img {
    margin-bottom: -135px;
    text-align: center;
}

.member-sec .member-img img {
    border: 2px solid;
    border-radius: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    /* Adjust values as needed */
}

.member-bx {
    cursor: pointer;
}

.member-bx:hover .member-info {
    background-color: white;
}

.member-bx:hover * {
    color: var(--primary-color) !important;
}

.member-bx:hover .member-img img {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

.member-sec .member-info small {
    display: block;
    height: 90px;
    font-size: 12px;
    line-height: 17px;
}


/* faq section stylng  */


/* service faq section */
.faq-section {
    padding: 70px 0;
}

.faq-section .accordion-item {
    background-color: var(--primary-color);
}

.faq-section .accordion-item * {
    color: white;
}

.faq-section button.accordion-button {
    background: var(--primary-color);
    border-bottom: 0px !important;
    line-height: 1.5rem;
}

.faq-section .accordion-button:not(.collapsed),
.faq-section .accordion-button:focus {
    outline: none;
    border-color: transparent;
    box-shadow: none;
    background-color: transparent;
}

.faq-section .accordion-button::after {
    width: 11px;
    height: 11px;
    border-radius: 100%;
    background-color: var(--secondary-color);
    background-image: none !important;
}

.faq-section .accordion-button.collapsed::after {
    background-color: var(--gray-back);
}


/* contact section styling  */


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
    margin-top: 40px;
}

.contact .info-item i {
    color: var(--white-font);
    background: var(--primary-color);
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .php-email-form {
    height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(in srgb, var(--light-back), transparent 50%);
    border-color: color-mix(in srgb, var(--dark-font), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--dark-font), transparent 70%);
}

.contact .php-email-form button[type=submit] {
    color: var(--white-font);
    background: var(--primary-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--primary-color), transparent 20%);
}


/* Modal Styling  */

/* Custom styles for the modal */
.talk-modal .modal-content {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.talk-modal .modal-header .talk-modal .modal-title {
    font-size: 1.3rem;
    font-weight: bold;
}

.talk-modal .input-group-text {
    background-color: white;
    border: none;
}

.talk-modal .form-control,
.talk-modal .form-select {
    border-radius: 0;
    box-shadow: none;
}

.talk-modal .btn-close-white {
    filter: invert(1);
    /* White close button */
}

.talk-modal .btn-success {
    background-color: var(--secondary-color);
    border: 2px solid black;
    box-shadow: 2px 4px 5px rgb(0, 0, 0);
    border: none;
    font-size: 1.2rem;
    transition: .6s;
}

.talk-modal .btn-success:hover {
    opacity: 0.7;
}

.talk-modal .modal-body {
    padding: 2rem;
}

.talk-modal .text-white {
    color: white !important;
}

/* inner hero section  */

.inner-hero {
    padding: 9% 0 6% 0;
    background-image: linear-gradient(rgba(2, 48, 71, 0.9),
            /* Darker version of the color */
            rgba(2, 48, 71, 0.7)),
        url("../images/join-bg.PNG");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.inner-hero .inner-hero-content {
    text-align: center;
}

.inner-hero .inner-hero-content * {
    color: var(--white-font);
}

/* about page  */


/* portfolio section styling  */

.port-slider img {
    margin-right: 10px;
}

.port-slider .slick-dots {
    bottom: -45px;
}

.port-slider .slick-dots li {
    width: 10px;
}

.port-slider .slick-dots li button:before {
    color: var(--primary-color);
    font-size: 15px;
}

.port-slider .slick-dots li.slick-active button:before {
    color: #3f3d56;
}


/* blog page styling  */


.blog-card {
    background-color: #fff;
    border-radius: 8px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.blog-content {
    padding: 20px 20px 30px 20px !important;
}

.blog-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}



/* single post page styling  */


.post-hero {
    padding: 9% 0 7% 0;
    background-size: cover;
    background-position: center;
}

.post-hero h1 {
    color: white;
    text-align: center;
}

/* inner service page styling  */


.seervice-hero-img img {
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.2));
    animation: bounce 3s ease-in-out infinite;
}


@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
        /* Starting and ending position */
        filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.2));
        /* Normal shadow */
    }

    50% {
        transform: translateY(-20px);
        /* Peak height of the bounce */
        filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.3));
        /* Increased shadow spread */
    }
}


.inner-hero.service-hero {
    padding-top: 7% !important;
}

.theme-light-btn {
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 18px;
}


/* review section styling  */

div#hide-marketing {
    width: 300px;
    height: 40px;
    background-color: white !important;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
}


/* footer styling  */

.footer-section a,
.footer-section a:active,
.footer-section a:focus {
    color: #6f6f6f;
    text-decoration: none;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}

.footer-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-section img {
    max-width: 100%;
    height: auto;
    width: 170px;
    filter: brightness(0) invert(1);
}


.footer-section {
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 9;
}

.footer-section:before {
    content: '';
    position: absolute;
    top: -146%;
    left: -18%;
    width: 44%;
    height: 257%;
    transform: rotate(54deg);
    background-color: #00697e23;
    -webkit-transform: rotate(54deg);
    -moz-transform: rotate(54deg);
    -ms-transform: rotate(54deg);
    -o-transform: rotate(54deg);
    z-index: -10;
}

.footer-section:after {
    position: absolute;
    content: '';
    background-color: #00697e23;
    top: -24%;
    right: 4%;
    width: 26%;
    height: 264%;
    transform: rotate(44deg);
    -webkit-transform: rotate(44deg);
    -moz-transform: rotate(44deg);
    -ms-transform: rotate(44deg);
    -o-transform: rotate(44deg);
    z-index: -10;
}

.footer-section .footer-top {
    padding-top: 96px;
    padding-bottom: 50px;
}

.footer-section .footer-top p,
.footer-section .company-footer-contact-list li {
    color: #ffffff;
}

.footer-section .company-footer-contact-list {
    margin-top: 10px;
}

.footer-section .company-footer-contact-list li {
    display: flex;
    display: -webkit-flex;
    align-items: center;
}

.footer-section .company-footer-contact-list li+li {
    margin-top: 5px;
}

.footer-section .company-footer-contact-list li i {
    margin-right: 10px;
    font-size: 20px;
    display: inline-block;
}

.footer-top .site-logo {
    margin-bottom: 25px;
    display: block;
    max-width: 170px;
}

.widget-title {
    text-transform: capitalize;
}

.footer-top .widget-title {
    color: #ffffff;
    margin-bottom: 40px;
}

.courses-link-list li+li {
    margin-top: 10px;
}

.courses-link-list li a {
    color: #ffffff;
    text-transform: capitalize;
    font-family: var(--para-font);
    font-weight: 400;
}

.courses-link-list li a:hover {
    color: var(--white-font);
}

.courses-link-list li i {
    margin-right: 5px;
}

.footer-top .small-post-title a {
    font-family: var(--para-font);
    color: #ffffff;
    font-weight: 400;
}

.small-post-item .post-date {
    color: var(--white-font);
    margin-bottom: 3px;
    font-family: var(--para-font);
    font-weight: 400;
}

.small-post-list li+li {
    margin-top: 30px;
}

.news-letter-form {
    margin-top: 15px;
}

.news-letter-form input {
    width: 100%;
    padding: 12px 25px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: none;
}

.news-letter-form input[type="submit"] {
    width: auto;
    border: 2px solid var(--primary-color);
    background-color: var(--secondary-color);
    padding: 9px 30px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bolx;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: var(--white-font);
    margin-top: 10px;
}

.footer-bottom {
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.149);
}

.copy-right-text {
    color: #ffffff;
}

.copy-right-text a {
    color: var(--white-font);
}

.terms-privacy li+li {
    margin-left: 30px;
}

.terms-privacy li a {
    color: #ffffff;
    position: relative;
}

.terms-privacy li a:after {
    position: absolute;
    content: '-';
    color: #ffffff;
    display: inline-block;
    top: 0;
    right: -18px;
}

.terms-privacy li+li a:after {
    display: none;
}

div#discount img {
    width: 149px;
    cursor: pointer;
    position: fixed;
    z-index: 333;
    bottom: 15px;
    left: 15px;
    animation: bubbleEffect 2s infinite ease-in-out;
}



@keyframes bubbleEffect {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(0.9);
    }

    75% {
        transform: scale(1.05);
    }
}


@media only screen and (max-width: 1200px) {
    .navigation-bar .navbar-nav>.nav-item a {
        padding: 6px 15px !important;
    }

    .swiper {
        width: 252px;
        height: 348px;
    }

    .heading-1 {
        font-size: 37px;
        font-weight: 700;
        line-height: 47px;
    }

    .counter-card .counter-number {
        font-size: 36px;
        line-height: 46px;
    }

    .counter-card .counter-title {
        font-size: 16px;
        line-height: 26px;
    }
}

@media only screen and (max-width: 1024px) {
    .navigation-bar .navbar-nav>.nav-item a {
        padding: 7px 10px !important;
    }

    .heading-1 {
        font-size: 36px;
        line-height: 47px;
    }

    .section {
        padding: 30px 0px;
    }

    .heading-2 {
        font-size: 25px;
        line-height: 35px;
    }
}



@media only screen and (max-width: 991px) {
    div#navbarNav .navbar-nav {
        margin: 30px 0px;
    }

    .header-btns {
        margin-bottom: 20px;
    }

    .tagline {
        font-size: 18px;
    }

    .para {
        font-size: 14px;
    }

    .hero-slider.swiper-container {
        overflow: hidden;
        margin-top: 50px;
    }

    .hero-section {
        background-image: linear-gradient(to top, rgba(0, 53, 62, 1), rgba(2, 54, 107, 0) 80%),
            /* Darker at the bottom */
            linear-gradient(rgba(62, 199, 231, 0.0), rgba(255, 255, 255, 0.9)),
            /* Light overlay */
            url("../images/hero-bg-2.jpg");
    }

    br {
        display: none !important;
    }

    .book-writer-img {
        margin-bottom: 30px;
    }

    .portfolio-gallery a {
        flex: 1 1 calc(50% - 20px);
    }

    .counter-card {
        margin-bottom: 20px;
    }

    p.para.px-5 {
        padding: 9px !important;
    }

    .member-bx {
        padding: 40px !important;
    }

    .abt-img {
        text-align: center;
        margin-top: 30px;
    }

    p.testimonial-text {
        height: 134px;
    }

    .blog-card.shadow-md {
        margin-bottom: 25px;
    }

    .footer-top .widget-title {
        margin: 25px 0 !important;
    }

    .service-info-content img {
        margin-top: 30px;
    }

    p.tagline.px-5 {
        padding: 8px !important;
    }

    .heading-3 {
        font-size: 20px;
        line-height: 30px;
    }

    img.img-fluid.w-50,
    img.img-fluid.w-75 {
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    div#discount img {
        width: 90px;
    }

    .member-sec .member-info small {
        height: auto !important;
    }
}


@media only screen and (max-width: 480px) {
    .swiper {
        width: 188px;
        height: 240px;
    }

    .heading-1 {
        font-size: 30px;
        line-height: 40px;
    }

    ul.dropdown-menu.show {
        height: 272px;
        overflow-y: scroll;
    }

    .theme-check-list li {
        font-size: 16px;
    }

    .quality-timeline .timeline-content h3 {
        font-size: 22px;
    }

    section.section.quality-timeline .container {
        padding: 14px;
    }

    .brand-slider img.slick-slide {
        padding: 10px 20px;
    }

}




/* Fixed Actions Container */
.fixed-actions {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1050;
    display: flex;
    align-items: center;
}

/* Tilted Button */
.discount-btn {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    padding: 10px 10px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    writing-mode: vertical-rl;
    /* Rotates text vertically */
    text-align: center;
    transform: rotate(180deg);
    /* Flips text direction */
    white-space: nowrap;
    transition: right 0.3s ease, transform 0.3s ease;
    height: auto;
}

.discount-btn span {
    color: white;
}

.discount-btn:hover {
    background-color: var(--primary-color);
}

/* Sliding Form */
.form-slide-container {
    display: flex;
    align-items: stretch;
}

#form-slide {
    position: fixed;
    top: 65%;
    right: -350px;
    transform: translateY(-50%);
    width: 300px;
    height: auto;
    background-color: #f8f9fa;
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px 0 0 5px;
    z-index: 1049;
    transition: right 0.3s ease;
}

#form-slide.active {
    right: 0;
}

#form-slide .form-container {
    padding: 20px;
}

#form-slide .form-title {
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

div#form-slide .form-control:focus {
    box-shadow: none;
    border: 1px solid var(--primary-color);
} 