* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #056FDD;
    --secondary-color: #010228;
}

body {
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Urbanist', sans-serif;
}

a {
    text-decoration: none;
}

ul li {
    list-style: none;
}

.container {
    width: 100%;
    /* max-width: 1120px; */
    max-width: 1220px;
    margin: 0 auto;
}


/* Section Title  */
.section-title {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 10px;
}

.section-title span {
    position: relative;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
}

.section-title .line-left::after,
.section-title .line-right::before {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    background: var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
}

.section-title .line-left::after {
    right: 100%;
}

.section-title .line-right::before {
    left: 100%;
}

.section-title p {
    text-transform: uppercase;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: bold;
}

.section-subtitle {
    font-size: 55px;
    color: #000;
}


/* CTA Button */
.cta-btn {
    background: var(--primary-color);
    color: #fff;
    display: block;
    width: fit-content;
    padding: 12px 32px;
    position: relative;
    z-index: 1;
    box-shadow: 2px 2px 2px #1780f0;
    overflow: hidden;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #1616dd, #0e0e94, #07074d);
    transition: all 0.2s linear;
    z-index: -1;
}

.cta-btn:hover {
    box-shadow: none;
}

.cta-btn:hover::before {
    left: 0;
}



/* Breadcrum Section */
.breadcrum {
    background-image: linear-gradient(to right, #0000007c, #0000007c), url("/images/service4.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 150px 0;
}

.breadcrum .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-name {
    /* text-transform: uppercase; */
    font-size: 62px;
    font-family: 'Urbanist', sans-serif;
    color: #fff;
    font-weight: 800;
    font-weight: 700;
    font-size: 75px;
    line-height: 80px;
    text-transform: capitalize;
}

.breadcrum-link {
    color: #fff;
    width: fit-content;
    padding: 12px 32px;
    /* word-spacing: 2px; */
}

.breadcrum-link a {
    color: #fff;
    transition: 0.2s ease-in-out;
}

.breadcrum-link a:hover {
    color: var(--primary-color);
}


/* Header Section */
header {
    background-color: #fff;
    color: #000;
    padding: 24px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
    /* align-items: center; */
    list-style: none;
    gap: 32px;
}

nav ul li {
    position: relative;
}

nav a {
    color: #000;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.2s ease;
    position: relative;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.4s ease;
}

nav a:hover::before {
    width: 100%;
}

nav a:hover {
    color: var(--primary-color);
}

.phone-no {
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.phone-no i {
    color: var(--primary-color);
}

.phone-no a {
    cursor: pointer;
    color: #000;
    transition: 0.2s ease-in-out;
}

.phone-no a:hover {
    color: var(--primary-color);
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.fa-angle-down {
    /* height: 8px; */
    /* opacity: 0.6; */
    margin: 2px 0 0 0;
    transition: transform 0.2s ease;
}

nav a:hover .fa-angle-down {
    transform: rotate(180deg);
}



/* Dropdown Styles */
.dropdown-links {
    display: none;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    row-gap: 12px !important;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary-color);
    z-index: 1000;
    width: 250px;
}

.dropdown-links li {
    width: 100%;
}

.dropdown-links a {
    padding: 16px;
    display: block;
    color: #fff;
    transition: background 0.2s ease;
}

.dropdown-links a:hover {
    /* background: #fff; */
    color: var(--primary-color);
}

nav .dropdown-links a::before {
    bottom: 0px;
}

.dropdown:hover .dropdown-links {
    display: flex;
}

/* Hamburger Styles */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger-wrapper div {
    height: 3px;
    width: 30px;
    background: black;
    margin-bottom: 6px;
    border-radius: 2px;
}

.hamburger-wrapper div:last-child {
    margin-bottom: 0;
}



/* Footer Section */
footer {
    background: linear-gradient(to bottom, #dee8f3, #e8ecf0);
    /* background: var(--secondary-color); */
    color: #e9e9e9;
    padding: 40px 0 24px;
}

footer .container {
    display: flex;
    justify-content: space-between;
}

.footer-left {
    width: 30%;

    /* --primary-color: #056FDD;
    --secondary-color: #010228; */

    background: linear-gradient(135deg, #94b4da, #c3d8ee);
    /* background-color: #000359; */
    color: #fff;
    padding: 20px;
}

.footer-logo {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

.footer-logo img {
    width: 150px;
}

.footer-description {
    margin-top: 24px;
    margin-bottom: 32px;
    font-size: 16px;
    color: #1b1b1b;
    text-align: center;
    line-height: 28px;
}

.footer-contact p {
    color: #141414;
    margin: 12px 0;
    font-size: 15px;
}

.footer-contact p i {
    width: 12px;
    margin-right: 12px;
}

.footer-contact a {
    color: #141414;
    text-decoration: none;
    font-weight: 400;
}

.footer-social {
    background-color: var(--primary-color);
    padding: 4px 20px;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 24px;
    width: fit-content;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.footer-social a {
    padding: 4px;
}

.footer-social a i {
    color: white;
}

/* Right Side */
.footer-right {
    width: 68%;
    padding: 0 20px 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-right-wrapper {
    display: flex;
    justify-content: start;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-quick-links,
.footer-services-links,
.footer-subscribe {
    width: fit-content;
}

.footer-right h4 {
    margin-bottom: 24px;
    color: #000;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-right li {
    margin-bottom: 10px;
}

.footer-right li a {
    color: #3f3e3e;
    text-decoration: none;
    transition: 0.1s ease;
}

.footer-right li a:hover {
    color: #000;
}

.footer-subscribe form {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.footer-subscribe input {
    padding: 8px;
    border: 1px solid #ccc;
    flex: 1;
    width: 300px;
}

.footer-subscribe button {
    border: none;
    width: 100%;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding: 8px 0;
    font-size: 0.8rem;
    border-top: 1px solid var(--primary-color);
    width: 100%;
    color: #000;
}

@media (max-width:1120px) {

    /* Container 1120 */
    .container {
        padding: 0 40px;
    }
}

@media (max-width:1115px) {
    /* Header Section 1115 */
    header {
        padding: 10px 0;
    }

    header nav ul {
        height: 100vh;
        display: none;
        flex-direction: column;
        position: absolute;
        top: 84px;
        right: 0;
        background-color: #3b3b3b;
        width: 210px;
        text-align: center;
        gap: 0;
    }

    header nav ul li a {
        text-align: left;
        text-decoration: none;
        padding: 22px 18px;
        display: block;
        color: white;
        font-size: 14px;
        /* border-bottom: 1px solid white; */
        transition: 0.2s;
    }

    header nav ul.active {
        display: flex;
        z-index: 10;
    }

    .phone-no {
        display: none;
    }

    .hamburger {
        display: block;
    }

    nav a::before {
        bottom: -2px;
    }

    .dropdown-links {
        height: fit-content;
        top: -10px !important;
        left: -250px !important;
    }
    
    
}


@media (max-width:768px) {

    /* Container 768 */
    .container {
        padding: 0 20px;
    }
    /* Breadcrum 768*/
    .breadcrum {
        padding: 120px 0;
    }

    /* Page Title Section 768*/
    .page-title {
        padding: 90px 0;
    }

    .section-subtitle {
        font-size: 44px;
    }

    .page-name {
        font-size: 50px;
        line-height: 45px;
        margin-bottom: 10px;
    }

    /* Header Section 768*/
    header nav ul {
        top: 74px;
    }
    header .logo img {
        height: 50px;
    }

    /* Footer Section 768 */
    .footer-left {
        width: 45%;
    }

    .footer-right-wrapper {
        row-gap: 16px;
    }

    .footer-right {
        width: 52%;
        padding: 0 0;
    }
}


@media (max-width:480px) {
    .container {
        padding: 0 10px;
    }

    .section-subtitle {
        font-size: 32px;
    }

    /* Breadcrum 480*/
    .breadcrum {
        padding: 100px 0;
    }
    
    /* Page Title Section 768*/
    .page-title {
        padding: 70px 0;
    }

    .page-name {
        line-height: 32px;
        font-size: 36px;
        margin-bottom: 8px;
    }

    /* Header Section 480*/
    header {
        padding: 10px 0px;
    }

    header .logo img {
        height: 40px;
    }

    header nav ul {
        width: 150px;
        top: 64px;
    }

    .dropdown-links {
        top: -10px !important;
        left: -190px !important;
        width: 190px;
    }

    /* Footer Section 480 */
    footer {
        padding: 40px 0 0;
    }

    footer .container {
        flex-wrap: wrap;
        row-gap: 32px;
    }

    .footer-left {
        width: 100%;
    }

    .footer-right-wrapper {
        row-gap: 16px;
    }

    .footer-right {
        width: 100%;
        padding: 0 0;
    }

}