@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');


.source-sans-3 {
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

 
.onest {
    font-family: "Onest", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}


.reddit-sans{
    font-family: "Reddit Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/* Base Styles */
:root {
    --primary-color: #0072bc;
    --secondary-color: #3ab7f1;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --transition: all 0.3s ease;
}


/* Ensure html and body take full viewport height */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Flex container for sticky footer */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Source Sans 3', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Main content area takes up available space */
main {
    flex: 1;
    width: 100%;
    padding: 20px 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
}

/* Ensure proper box model for all elements */
*,
*::before,
*::after {
    box-sizing: inherit;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Header with White Background */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent;
}

.header.white-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Scrolled header state */
.header.scrolled {
    background-color: #0072bc !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Ensure text remains visible on scrolled header */
.header.scrolled .main-nav ul li a,
.header.scrolled .logo a {
    color: white !important;
}

/* Dropdown menu styling for scrolled header */
.header.scrolled .dropdown-menu {
    background-color: #0072bc;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled .dropdown-menu a {
    color: white !important;
}

.header.scrolled .dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo a {
    display: block;
    position: relative;
    height: 40px;
}

.logo img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo .logo-default {
    opacity: 1;
    position: relative;
    z-index: 1;
}

.logo .logo-scrolled {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
}

.header.scrolled .logo .logo-default {
    opacity: 0;
}

.header.scrolled .logo .logo-scrolled {
    opacity: 1;
}

/* Search icon color on scroll */
.header.scrolled .search-btn i {
    color: white;
}

/* Navigation */
.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 600;
    padding: 8px 0;
    position: relative;
}

.main-nav a.active,
.main-nav a:hover {
    color: #000;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: fixed;
    top: 70px; /* Height of header */
    left: 0;
    border-radius: 0 0 20px 20px;
    width: 100%;
    height: 286px;
    background-color: #0072bc;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 999;
    padding: 0;
    margin: 0;
    border: none !important;
    outline: none !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    pointer-events: none;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Allow scrolling when dropdown is open */
body.dropdown-open {
    overflow: auto;
    height: 100%;
}

.dropdown-menu .container {
    max-width: 1440px;
    width: 100%;
    margin: -7px auto;
    padding: 80px 90px 0px;
    height: 100%;
    box-sizing: border-box;
    background-color: #0072bc;
    border-radius: 0 0 8px 8px;
}

.dropdown-grid {
    display: flex;
    gap: 40px;
    height: 100%;
}

.dropdown-column {
    flex: 1;
    padding-right: 20px;
}

.dropdown-column:last-child {
    border-right: none;
}

.dropdown-column h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Source Sans 3', sans-serif;
}

.dropdown-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dropdown-column ul li {
    margin: 0;
    padding: 0;
    background: transparent !important;
    text-indent: 0;
    padding-left: 0;
}

.dropdown-column a {
    color: #fff;
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
    transition: none;
    display: block;
    padding: 8px 0;
    background-color: transparent !important;
    width: 100%;
}

.dropdown-column a:hover {
    opacity: 1;
    text-decoration: none;
    background-color: transparent !important;
    box-shadow: none !important;
}

.dropdown-column a:before,
.dropdown-column a:after {
    display: none !important;
    content: none !important;
}

.dropdown-menu a:hover {
    background-color: transparent !important;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn i {
    margin-left: 8px;
}

.btn-contact {
    background: linear-gradient(90deg, #00BA71, #38D58C);
    color: #fff;
    font-size: 11px;
    width: 134px;
    margin-top: -5px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

/* Box Styles */
.box-60x65 {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 1220px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0072bc 0%, #0087e6 90%) !important;
    display: block;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 114, 188, 0.3);
}

.box-60x65 p {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    text-align: left;
    margin: 14px auto;
    padding: 0 20px;
}


/* Main Content Area */

.container h1 {
    font-size: 33px;
    font-weight: 500;
    color: #333;
    margin-top: 60px;
    margin-bottom: 20px;
}

.container p {
    font-size: 18px;
    color: #000;
    font-family: 'Source Sans 3', sans-serif;
    margin: 0 auto 40px;
}


/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    padding: 50px 0 0;
    color: #333;
    width: 100%;
    margin-top: auto; /* Push footer to bottom */
}

.footer .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #222;
    font-weight: 700;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3ab7f1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 50%;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-decoration: none;
}

.social-links a:hover {
    background-color: #3ab7f1;
    color: #fff;
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid #e1e1e1;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3ab7f1;
}
/* Responsive Styles */
@media (max-width: 1024px) {
    .dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header .container {
        padding: 0 15px;
    }
    
    .main-nav {
        display: none;
    }
    
    .dropdown-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 425px Breakpoint */
@media (max-width: 425px) {
    .container {
        padding: 0 15px;
    }
    
    .box-60x65 {
        width: 100%;
        border-radius: 0;
        top: 70px;
    }
    
    .box-60x65 p {
        font-size: 20px;
        margin: 10px auto;
        text-align: center;
    }
    
    .container h1 {
        font-size: 22px;
        margin-top: 45px;
        line-height: 1.3;
        margin: 40px 20px 10px;
        
    }
    
    .container p, .container li {
        font-size: 16px;
        line-height: 1.6;
        margin: 0px 20px;
    }
    
      /* Footer Styles */
      .footer {
        background-color: #EEEEEE;
        padding: 40px 0;
        color: #333;
    }
    
    .footer .container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 40px;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 0px;
        margin-bottom: 30px;
    }
    
    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
        color: #222;
        font-weight: 700;
    }
    
    .footer-section ul li {
        margin-bottom: 8px;
    }
    
    .footer-section a {
        color: #000;
        transition: color 0.3s ease;
    }
    
    .footer-section a:hover {
        color: #3ab7f1;
    }
    
    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }
    
    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
        background-color: #fff;
        border-radius: 50%;
        color: #333;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        position: relative;
        text-decoration: none;
    }
    
    .social-links a img {
        width: 14px;
        height: 14px;
        object-fit: contain;
        margin: 0;
        padding: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .social-links a:hover {
        background-color: #3ab7f1;
        color: #fff;
    }
    
    .social-links a:hover img {
        filter: brightness(0) invert(1);
    }
    
    .social-links a i {
        font-size: 15px;
        line-height: 1;
    }
    
    .footer-bottom {
        border-top: 1px solid #e1e1e1;
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        flex-direction: column;
    }
    
    .footer-links {
        display: flex;
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links a {
        color: #666;
        font-size: 14px;
        transition: color 0.3s ease;
    }
    
    .footer-links a:hover {
        color: #3ab7f1;
    }
 
}

/* 375px Breakpoint */
@media (max-width: 375px) {
    .box-60x65 p {
        font-size: 18px;
    }
    
    .container h1 {
        font-size: 26px;
        margin-top: 70px;
    }
    
    .container p, .container li {
        font-size: 15px;
    }
    
    .btn-contact {
        width: 140px;
        height: 45px;
        font-size: 13px;
    }
    
    .footer-section h3 {
        font-size: 16px;
    }
    
    .footer-section a {
        font-size: 14px;
    }
}

/* 320px Breakpoint */
@media (max-width: 320px) {
    .box-60x65 p {
        font-size: 16px;
    }
    
    .container h1 {
        font-size: 24px;
        margin-top: 65px;
    }
    
    .container p, .container li {
        font-size: 14px;
    }
    
    .btn-contact {
        width: 130px;
        height: 42px;
        font-size: 12px;
    }
    
    .footer-section h3 {
        font-size: 15px;
    }
    
    .footer-section a {
        font-size: 13px;
    }
    
    .footer-links {
        flex-wrap: wrap;
    }
    
    .footer-links a {
        font-size: 12px;
    }
}

@media (min-width: 2000px) {
    body {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        font-family: 'Source Sans 3', sans-serif;
        line-height: 1.6;
        color: var(--text-color);
        background-color: var(--white);
        overflow-x: hidden;
    }
    
    /* Cookie policy list items */
    .container > li {
        font-size: 29px !important;
        line-height: 1.4 !important;
        margin-bottom: 20px !important;
        display: list-item !important;
        list-style-type: disc !important;
        margin-left: 40px !important;
        padding-left: 10px !important;
    }
    
    /* Main content area takes up available space */
    main {
        flex: 1;
        width: 100%;
        padding: 20px 0;
    }
    
    .container {
        width: 100%;
        max-width: 1900px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition);
    }
    
    ul {
        list-style: none;
    }
    
    /* Header with White Background */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        transition: all 0.3s ease;
        background-color: transparent;
    }
    
    .header.white-header {
        background-color: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    /* Scrolled header state */
    .header.scrolled {
        background-color: #0072bc !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    
    /* Ensure text remains visible on scrolled header */
    .header.scrolled .main-nav ul li a,
    .header.scrolled .logo a {
        color: white !important;
    }
    
    /* Dropdown menu styling for scrolled header */
    .header.scrolled .dropdown-menu {
        background-color: #0072bc;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .header.scrolled .dropdown-menu a {
        color: white !important;
    }
    
    .header.scrolled .dropdown-menu a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
    }
    
    .logo a {
        display: block;
        position: relative;
        height: 40px;
    }
    
    .logo img {
        height: 40px;
        width: auto;
        transition: opacity 0.3s ease;
    }
    
    .logo .logo-default {
        opacity: 1;
        position: relative;
        z-index: 1;
    }
    
    .logo .logo-scrolled {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        z-index: 2;
    }
    
    .header.scrolled .logo .logo-default {
        opacity: 0;
    }
    
    .header.scrolled .logo .logo-scrolled {
        opacity: 1;
    }
    
    /* Search icon color on scroll */
    .header.scrolled .search-btn i {
        color: white;
    }
    
    /* Navigation */
    .main-nav ul {
        display: flex;
        gap: 20px;
    }
    
    .main-nav a {
        color: var(--text-color);
        font-weight: 600;
        padding: 8px 0;
        font-size: 21px;
        position: relative;
    }
    
    .main-nav a.active,
    .main-nav a:hover {
        color: #000;
    }
    
    /* Dropdown Menu */
    .dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        position: fixed;
        top: 70px; /* Height of header */
        left: 0;
        border-radius: 0 0 20px 20px;
        width: 100%;
        height: 286px;
        background-color: #0072bc;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        z-index: 999;
        padding: 0;
        margin: 0;
        border: none !important;
        outline: none !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
        pointer-events: none;
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
    
    .dropdown.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    /* Allow scrolling when dropdown is open */
    body.dropdown-open {
        overflow: auto;
        height: 100%;
    }
    
    .dropdown-menu .container {
        max-width: 1440px;
        width: 100%;
        margin: 6px auto;
        padding: 50px 90px 0px;
        height: 100%;
        box-sizing: border-box;
        background-color: #0072bc;
        border-radius: 0 0 8px 8px;
    }
    
    .dropdown-grid {
        display: flex;
        gap: 40px;
        height: 100%;
    }
    
    .dropdown-column {
        flex: 1;
        padding-right: 20px;
    }
    
    .dropdown-column:last-child {
        border-right: none;
    }
    
    .dropdown-column h3 {
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 20px;
        font-family: 'Source Sans 3', sans-serif;
    }
    
    .dropdown-column ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .dropdown-column ul li {
        margin: 0;
        padding: 0;
        background: transparent !important;
        text-indent: 0;
        padding-left: 0;
    }
    
    .dropdown-column a {
        color: #fff;
        font-size: 20px;
        line-height: 1.8;
        opacity: 0.9;
        transition: none;
        display: block;
        padding: 8px 0;
        background-color: transparent !important;
        width: 100%;
    }
    
    .dropdown-column a:hover {
        opacity: 1;
        text-decoration: none;
        background-color: transparent !important;
        box-shadow: none !important;
    }
    
    .dropdown-column a:before,
    .dropdown-column a:after {
        display: none !important;
        content: none !important;
    }
    
    .dropdown-menu a:hover {
        background-color: transparent !important;
    }
    
    /* Header Actions */
    .header-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .search-btn {
        background: none;
        border: none;
        font-size: 24px;
        color: var(--text-color);
        cursor: pointer;
        transition: var(--transition);
    }
    
    .search-btn:hover {
        color: var(--primary-color);
    }
    
    .btn {
        display: inline-block;
        padding: 12px 24px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
    }
    
    .btn i {
        margin-left: 8px;
    }
    
    .btn-contact {
        background: linear-gradient(90deg, #00BA71, #38D58C);
        color: #fff;
        font-size: 14px;
        width: 164px;
        margin-top: -5px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-contact:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        color: var(--primary-color);
    }
    
    /* Box Styles */
    .box-60x65 {
        position: absolute;
        top: 90px;
        left: 50%;
        transform: translateX(-50%);
        width: 1920px;
        height: 65px;
        border-radius: 18px;
        background: linear-gradient(135deg, #0072bc 0%, #0087e6 90%) !important;
        display: block;
        z-index: 2;
        box-shadow: 0 4px 12px rgba(0, 114, 188, 0.3);
    }
    
    .box-60x65 p {
        color: #fff;
        font-size: 27px;
        font-weight: 600;
        justify-content: center;
        align-items: center;
        text-align: left;
        margin: 14px auto;
        padding: 0 20px;
    }
    
    
    /* Main Content Area */
    
    .container h1 {
        font-size: 48px;
        font-weight: 500;
        color: #333;
        margin-top: 60px;
        margin-bottom: 20px;
    }
    
    .container p {
        font-size: 28px;
        color: #000;
        font-family: 'Source Sans 3', sans-serif;
        margin: 0 auto 40px;
    }
    
    /* Footer Styles */
.footer {
    background-color: #EEEEEE;
    padding: 80px 0;
    color: #333;
}
        
.footer .container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 80px;
}
        
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}
        
.footer-section h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #222;
    font-weight: 700;
    }
        
.footer-section ul li {
    margin-bottom: 16px;
    }
        
.footer-section a {
    color: #000;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 50%;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-decoration: none;
    position: relative;
}

.social-links a img {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.social-links a:hover {
    background-color: #3ab7f1;
    color: #fff;
}

.social-links a:hover img {
    filter: brightness(0) invert(1);
}

.social-links a i {
    font-size: 20px;
    line-height: 1;
}

.footer-bottom {
    border-top: 2px solid #e1e1e1;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    font-size: 20px;
    }
        
.footer-links {
    display: flex;
    gap: 40px;
    }
        
.footer-links a {
    color: #666;
    font-size: 20px;
    transition: color 0.3s ease;
    }
        
.footer-links a:hover {
    color: #3ab7f1;
    }
      
}

@media screen and (max-width: 425px) {
    .box-60x65 {
        position: absolute;
        top: 90px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 54px;
        border-radius: 18px;
        background: linear-gradient(135deg, #0072bc 0%, #0087e6 90%) !important;
        display: block;
        z-index: 2;
        box-shadow: 0 4px 12px rgba(0, 114, 188, 0.3);
    }

    .logo img {
        margin-top: 5px;
        height: 30px;
        width: auto;
        transition: opacity 0.3s ease;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 2px;
    }

    .search-btn {
        font-size: 16px;
    }

    .btn-contact {
        background: linear-gradient(90deg, #00BA71, #38D58C);
        color: #fff;
        font-size: 10px;
        padding: 0px;
        width: 114px;
        margin-top: -3px;
        height: 31px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .box-60x65 p {
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        justify-content: center;
        align-items: center;
        text-align: left;
        margin: 11px auto;
        padding: 0 20px;
    }



}

