/* ===================
1. Google fonts
====================== */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&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');

/*====================
2. variables
======================*/
/* linear-gradient(135deg, #0a1c2b, #00556d, #413e66); */
:root {
    --body-font: "Instrument Sans", sans-serif;
    --heading-font: "Instrument Sans", sans-serif;
    --theme-color: #1bb1dc;
    --theme-color2: #413e66;
    --theme-color3: #9dddf0;
    --theme-color4: #86849e;
    --body-text-color: #757F95;
    --color-white: #ffffff;
    --color-dark: #00283A;
    --color-green: #11B76B;
    --color-blue: #0049D0;
    --color-skyblue: #00BFFF;
    --color-yellow: #FBA707;
    --color-gray: #ECECEC;
    --color-red: #FD6A6A;
    --hero-overlay-color: #01060F;
    --slider-arrow-bg: rgba(255, 255, 255, 0.2);
    --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
    --transition: all .5s ease-in-out;
    --transition2: all .3s ease-in-out;
    --border-info-color: rgba(0, 0, 0, 0.08);
    --border-info-color2: rgba(0, 0, 0, 0.05);
    --border-white-color: rgba(255, 255, 255, 0.12);
    --border-white-color2: rgba(255, 255, 255, 0.07);
    --footer-bg: #00283A;
    --footer-text-color: #F5FAFF;
}

/* ===================
3. General css
====================== */

*,
*:before,
*:after {
    box-sizing: inherit;
}

* {
    scroll-behavior: inherit !important;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    font-style: normal;
    font-size: 16px;
    font-weight: normal;
    color: #757F95;
    line-height: 1.8;
    position: relative;
    line-height: 1.6;
    font-weight: 400;
}

.text-shadow {
    text-shadow: 0.1em 0.1em 0 hsl(200, 42%, 13%);
}

.rotate {
    animation: circular-rotation 2.5s linear infinite;
    -webkit-animation: circular-rotation 2.5s linear infinite;
}

@keyframes circular-rotation {
    100% {
        transform: rotate(360deg);
    }
}

a {
    color: var(--color-dark);
    display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

a:hover {
    color: #0049D0;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-dark);
    margin: 0px;
    font-weight: 700;
    font-family: var(--heading-font);
    line-height: 1.2;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin: 0px;
    font-weight: 400;
}

.img,
img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    height: auto;
    object-fit: cover;
}

label {
    color: #999;
    cursor: pointer;
    font-weight: 400;
}

*::-moz-selection {
    background: #d6b161;
    color: var(--color-white);
    text-shadow: none;
}

::-moz-selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none;
}

::selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1;
}

*::placeholder {
    color: #999;
    font-size: 16px;
    opacity: 1;
}

.lead {
    font-weight: 500;
}

@media (max-width: 575.98px) {
    .lead {
        line-height: 1.4;
        font-size: .95rem;
    }

    p {
        font-size: 14px;
    }
}

.theme-btn {
    font-size: 16px;
    color: var(--color-white);
    padding: 10px 16px;
    transition: var(--transition);
    position: relative;
    border-radius: 5px;
    vertical-align: middle;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: var(--theme-color);
    box-shadow: var(--box-shadow);
    z-index: 1;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

/* Background fill animation */
.theme-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--theme-color2);
    transition: left 0.4s ease;
    z-index: -1;
}

/* Hover effect — background slides in, text stays */
.theme-btn:hover::before {
    left: 0;
}

.theme-btn:hover {
    color: var(--color-white);
}

.theme-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

/*====================
4. Margin & padding
======================*/

.pt-0 {
    padding-top: 0px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-120 {
    padding-top: 120px;
}

.pb-0 {
    padding-bottom: 0px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-120 {
    padding-bottom: 120px;
}

.py-70 {
    padding: 70px 0;
}

.py-80 {
    padding: 80px 0;
}

.py-90 {
    padding: 90px 0;
}

.py-100 {
    padding: 100px 0;
}

.py-110 {
    padding: 110px 0;
}

.py-120 {
    padding: 120px 0;
}

.mt-0 {
    margin-top: 0px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-110 {
    margin-top: 110px;
}

.mt-120 {
    margin-top: 120px;
}

.mb-0 {
    margin-bottom: 0px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-110 {
    margin-bottom: 110px;
}

.mb-120 {
    margin-bottom: 120px;
}

.my-80 {
    margin: 80px 0;
}

.my-90 {
    margin: 90px 0;
}

.my-100 {
    margin: 100px 0;
}

.my-110 {
    margin: 110px 0;
}

.my-120 {
    margin: 120px 0;
}

@media (max-width: 575px) {
    .py-70 {
        padding: 55px 0;
    }
}

/* ===================
5. Container
====================== */

@media (min-width: 1200px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1185px;
    }
}

/* ===================
6. Scroll-top css
====================== */

#scroll-top {
    position: fixed;
    bottom: -20px;
    right: 30px;
    font-size: 28px;
    border: none;
    outline: none;
    border-radius: 20px;
    color: var(--color-white);
    background-color: var(--theme-color);
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    box-shadow: var(--box-shadow2);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 4;
}

#scroll-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
}

@media all and (min-width: 768px) and (max-width: 1199px) {
    #scroll-top.active {
        bottom: 100px;
    }
}

@media (max-width: 575.98px) {
    #scroll-top {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    #scroll-top i {
        font-size: 24px;
    }
}

/* =========================
7. Owl Carousel Nav Prev
========================= */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    font-size: 20px;
    height: 50px;
    width: 50px;
    left: 35px;
    line-height: 0;
    position: absolute;
    text-align: center;
    top: 39%;
    background: var(--theme-color2);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -moz-transition: all 600ms ease 0ms;
    -webkit-transition: all 600ms ease 0ms;
    -ms-transition: all 600ms ease 0ms;
    -o-transition: all 600ms ease 0ms;
    transition: all 600ms ease 0ms;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    border: 0;
}

@media screen and (max-width: 600px) {

    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        height: 40px;
        width: 40px;
        line-height: 40px;
    }
}

.owl-carousel:hover .owl-nav button.owl-prev,
.owl-carousel:hover .owl-nav button.owl-next {
    opacity: 1;
    visibility: visible;
}

.owl-carousel:hover .owl-nav button.owl-prev {
    left: -60px;
}

.owl-carousel:hover .owl-nav button.owl-next {
    right: -60px;
}

.owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: 45px;
}

.owl-carousel .owl-nav button i {
    color: white;
    vertical-align: middle;
}

.owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-dots .owl-dot span {
    background: #bfbfbf;
    margin: 5px;
    border-radius: 50px;
    width: 25px;
    height: 8px;
    display: inline-block;
    transition: var(--transition);
}

.owl-dots .owl-dot.active span {
    background-color: var(--theme-color);
}


/* ===================
8. Header Top
====================== */
.header-top {
    background: var(--theme-color2);
    padding: 8px 0;
    position: relative;
    border-bottom: 1px solid #e2e2e2;
    z-index: 2;
}

.header-top-right ul {
    gap: 25px;
}

.header-top-right ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--heading-font);
}

.header-top-sale,
.header-top-links a {
    color: var(--color-white);
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 14px;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.header-top-links a:hover {
    color: var(--theme-color);
}

.header-top-sale strong {
    color: var(--theme-color);
    font-size: 16px;
}

/* Responsive: Header Top */
@media (max-width: 991px) {
    .header-top-wrap {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 767px) {
    .header-top-wrap {
        flex-direction: column-reverse;
    }
}

/* ===================
9. Navbar
====================== */
.navbar {
    background: var(--color-white);
    padding: 0;
}

.navbar.fixed-top {
    background: var(--color-white);
    box-shadow: var(--box-shadow2);
    animation: slide-down 0.7s;
}

@keyframes slide-down {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Logo switch on scroll */
.navbar .navbar-brand .logo-display {
    display: block;
}

.navbar .navbar-brand .logo-scrolled {
    display: none;
}

.navbar.fixed-top .logo-display {
    display: none;
}

.navbar.fixed-top .logo-scrolled {
    display: block;
}

.navbar .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-mobile-icon {
    display: inline-block;
}

.navbar-brand {
    margin-right: 0;
}

/* Dropdown arrow */
.navbar .dropdown-toggle::after {
    display: none;
}

.navbar .nav-item:last-child .nav-link {
    margin-right: 0 !important;
}

/* Desktop Navigation */
@media (min-width: 992px) {
    .navbar .nav-item .nav-link {
        margin-right: 25px;
        padding: 20px 0;
        font-size: 16px;
        font-family: var(--heading-font);
        font-weight: 400;
        color: #606261;
        text-transform: capitalize;
        position: relative;
    }

    .navbar .nav-item:last-child .nav-link {
        margin-right: 0 !important;
    }

    .navbar.fixed-top .nav-link {
        color: var(--color-dark);
    }

    .navbar .nav-link.active,
    .navbar .nav-item:hover .nav-link,
    .navbar.fixed-top .nav-link.active,
    .navbar.fixed-top .nav-item:hover .nav-link {
        color: var(--theme-color);
    }

    /* Dropdown Menu */
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        margin-top: 0;
        border: none;
        left: -15px;
        border-radius: 10px;
        padding: 12px 8px;
        background: var(--color-white);
        width: 220px;
        box-shadow: var(--box-shadow);
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }

    .navbar .dropdown-item {
        font-size: 16px;
        font-weight: 400;
        color: var(--color-dark);
        position: relative;
        text-transform: capitalize;
        transition: var(--transition);
    }

    .navbar .dropdown-item:hover {
        background: transparent;
        color: var(--theme-color);
        padding-left: 22px;
    }

    .navbar .dropdown-item::before {
        content: "";
        position: absolute;
        font-family: "Font Awesome 6 pro";
        left: 8px;
        top: 16px;
        width: 4px;
        height: 4px;
        background: var(--theme-color);
        font-size: 6px;
        transform: scale(0);
        transition: var(--transition);
        z-index: -1;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
    }

    .navbar .dropdown-item:hover::before {
        transform: scale(1);
    }

    .navbar .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }

    /* Nav Right */
    .nav-right {
        display: flex;
        align-items: center;
        gap: 28px;
    }

    .nav-right-link {
        font-size: 16px;
        color: var(--color-dark);
        font-weight: 500;
        background: transparent;
        border: none;
        position: relative;
    }

    .nav-right-link:hover {
        color: var(--theme-color) !important;
    }

    .nav-right .search-btn .nav-right-link {
        font-size: 20px;
    }
}

/* Navbar Width Tweaks */
@media (min-width: 1199px) and (max-width: 1399px) {
    .navbar .nav-link {
        margin-right: 15px !important;
    }

    .navbar.fixed-top .navbar-brand img {
        width: 130px;
    }

    .nav-right {
        margin-left: 15px !important;
        gap: 12px;
    }
}

@media (max-width: 1199px) {
    .navbar .nav-right-btn {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .navbar .nav-link {
        margin-right: 15px;
        font-size: 16px;
    }
}

/* ===================
Mobile Menu
====================== */
.mobile-menu-right {
    display: none;
}

@media (max-width: 991px) {
    .navbar {
        padding: 8px 0;
    }

    .navbar .offcanvas {
        width: 300px;
    }

    .navbar .offcanvas-header .btn-close {
        box-shadow: none;
    }

    .navbar .offcanvas-brand {
        width: 150px;
    }

    .navbar .dropdown-toggle::after {
        float: right;
        margin-top: 2px;
    }

    .navbar .nav-link {
        color: var(--color-dark);
        font-weight: 500;
        margin-right: 0;
        transition: var(--transition);
    }

    .navbar .nav-link:hover {
        color: var(--theme-color) !important;
    }

    /* Toggler */
    .navbar-toggler {
        padding: 0;
        border: none;
    }

    .navbar-toggler span {
        display: block;
        width: 24px;
        border-bottom: 3px solid var(--theme-color);
        border-radius: 50px;
        margin-top: 5px;
    }

    .navbar-toggler span:first-child {
        margin-top: 0;
    }

    .navbar-toggler span:nth-child(2) {
        width: 18px;
    }

    .navbar-toggler span:nth-child(3) {
        width: 12px;
    }

    /* Mobile Nav Extras */
    .mobile-menu-right,
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .mobile-menu-right .nav-right-link {
        font-size: 20px;
        color: var(--theme-color);
        position: relative;
    }

    .mobile-menu-right .nav-right-link span {
        position: absolute;
        width: 18px;
        height: 18px;
        line-height: 18px;
        color: var(--color-white);
        background: var(--theme-color);
        border-radius: 50px;
        font-size: 12px;
        right: -10px;
        top: -5px;
    }

    .navbar .dropdown-menu {
        border-radius: 15px;
        border: 1px solid var(--border-info-color);
    }

    .nav-right {
        display: none;
    }
}

/* ===================
10. Multi Dropdown Menu
====================== */
.navbar .dropdown-submenu {
    position: relative;
}

.navbar .dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 15px;
    top: 7px;
    font-weight: 600;
}

.navbar .dropdown-submenu:hover .dropdown-menu {
    top: 0;
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991px) {
    .navbar .dropdown-submenu .dropdown-menu {
        margin: 0 17px;
        opacity: unset;
        visibility: unset;
    }

    .navbar .dropdown-submenu a::after {
        top: 4px;
    }

    .navbar .dropdown-submenu a:hover {
        color: var(--theme-color);
    }
}

/* Base style for dropdown toggle icons */
.navbar-nav .dropdown-toggle i {
    transition: transform 0.3s ease;
    font-size: 0.75rem;
    display: inline-block;
}

/* Rotate arrow 180deg when dropdown is open or hovered */
.navbar-nav .nav-item.dropdown:hover>a.dropdown-toggle>i,
.navbar-nav .dropdown-toggle[aria-expanded="true"]>i {
    transform: rotate(180deg);
}

/* For submenu right arrows - rotate on hover */
.dropdown-submenu>a:hover>i {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

/* Ensure submenu icon base style */
.dropdown-submenu>a>i {
    font-size: 0.7rem;
    position: relative;
    top: 1px;
    display: inline-block;
    transition: transform 0.3s ease;
}

/*====================
11. Main section css
======================*/

.main {
    margin-top: 0rem;
}

/* ===================
12. Hero section
====================== */

.hero-section {
    position: relative;
    background: radial-gradient(circle at top left, #0a1f3d, #050e1f);
    padding: 6rem 1rem;
    min-height: 90vh;
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.text-brand {
    color: #1bb1dc;
}

/* Domain Search Form Container */
.domain-search-wrapper .domain-input-box {
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    max-width: 720px;
    width: 100%;
    box-shadow: 0 4px 12px rgb(27 177 220 / 0.15);
}

.domain-search-wrapper input,
.domain-search-wrapper select {
    border: none;
    border-radius: 0;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    outline-offset: 3px;
}

.domain-search-wrapper input:focus,
.domain-search-wrapper select:focus {
    outline: 2px solid #1bb1dc;
    outline-offset: 2px;
}

.domain-search-wrapper select {
    max-width: 140px;
    min-width: 110px;
}

/* Button Styling */
.btn-accent {
    background-color: #1bb1dc;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
    border-radius: 0 50px 50px 0;
    min-width: 110px;
}

.btn-accent:hover,
.btn-accent:focus {
    background-color: #1296c2;
    color: #fff;
    outline: none;
    box-shadow: 0 0 8px #1296c2;
}

/* TLD Selector Container */
.tld-selector {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(27, 177, 220, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.7rem 1rem;
    max-width: 720px;
    margin: 2rem auto 0;
    box-shadow: 0 8px 24px rgba(27, 177, 220, 0.15);
    flex-wrap: wrap;
}

.tld-btn {
    position: relative;
    background: transparent;
    border: none;
    color: #1bb1dc;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    transition: color 0.3s ease;
    outline-offset: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    user-select: none;
}

.tld-btn:focus {
    outline: 2px solid #0b85b8;
    outline-offset: 3px;
    box-shadow: 0 0 6px #0b85b8;
}

.tld-dot {
    width: 10px;
    height: 10px;
    background: #1bb1dc;
    border-radius: 50%;
    box-shadow: 0 0 6px #1bb1dc;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

/* Gradient underline animation */
.tld-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #1bb1dc, #0b85b8);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.tld-btn:hover::after,
.tld-btn.active::after {
    transform: scaleX(1);
}

.tld-btn:hover {
    color: #0b85b8;
}

.tld-btn.active {
    color: #0b85b8;
    font-weight: 800;
}

.tld-btn:hover .tld-dot,
.tld-btn.active .tld-dot {
    background: #0b85b8;
    box-shadow: 0 0 8px #0b85b8;
}

/* Tooltip for price */
.tld-btn[data-price] {
    position: relative;
}

.tld-btn[data-price]::before {
    content: attr(data-price);
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: #1bb1dc;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 4px 8px;
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 8px rgba(27, 177, 220, 0.5);
    z-index: 10;
}

.tld-btn:hover::before,
.tld-btn.active::before {
    opacity: 1;
    pointer-events: auto;
}

/* Floating Shapes */
.animated-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    width: 240px;
    height: 240px;
    background: #1bb1dc22;
    border-radius: 50%;
    animation: float 18s ease-in-out infinite;
}

.shape-1 {
    top: 5%;
    left: -80px;
    animation-delay: 0s;
}

.shape-2 {
    bottom: 15%;
    right: -100px;
    animation-delay: 3s;
}

.shape-3 {
    top: 35%;
    left: 65%;
    animation-delay: 6s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(45deg);
    }
}

/* TLD floating text */
.tld-icon {
    position: absolute;
    font-size: 2.5rem;
    font-weight: bold;
    color: #1bb1dc22;
    animation: floatText 12s ease-in-out infinite;
    user-select: none;
    pointer-events: none;
}

@keyframes floatText {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(6deg);
    }
}

.glass-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(2px);
    z-index: 0;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 4rem 1rem;
    }

    .domain-search-wrapper .domain-input-box {
        flex-direction: column;
        border-radius: 1rem;
    }

    .domain-search-wrapper input,
    .domain-search-wrapper select,
    .btn-accent {
        width: 100%;
        border-radius: 0 !important;
    }

    .btn-accent {
        border-radius: 0 0 1rem 1rem !important;
        min-width: unset;
    }

    .tld-selector {
        gap: .5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        min-height: 70vh;
        padding: 3rem 1rem;
    }

    .display-3 {
        font-size: 2rem;
    }

}

/* ======= 13. Start Why Oxnames Section Styles ======= */
.why-oxnames-section {
    background: #f9fbfc;
}

.text-accent {
    color: #1bb1dc;
}

.feature-card {
    background: #fff;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.feature-card h3 {
    font-size: 18px;
    color: #000;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(27, 177, 220, 0.12);
}

.feature-card .icon-circle {
    background: linear-gradient(135deg, #1bb1dc, #413e66);
    border-radius: 50%;
    padding: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 64px;
    height: 64px;
}

.feature-card .icon-circle svg {
    stroke: #fff;
    width: 32px;
    height: 32px;
}



/* ======= 14. Start how it works Styles ======= */


/* Accessibility helper */
.visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

.how-it-works-circle-section {
    background: linear-gradient(145deg, #f4f7fb, #e6ecf3);
}

.circle-diagram-wrapper {
    width: 500px;
    height: 500px;
    position: relative;
}

.circle-svg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.circle-step {
    position: absolute;
    width: 110px;
    text-align: center;
    z-index: 2;
}

.step-box {
    background: #ffffff;
    border: 2px solid #1bb1dc;
    border-radius: 14px;
    padding: 1rem 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 30px rgba(65, 62, 102, 0.07);
}

.step-box:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 30px rgba(65, 62, 102, 0.15);
}

.step-box h3 {
    font-size: 0.92rem;
    color: #413e66;
    margin-top: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-box .icon {
    background: #1bb1dc;
    color: #fff;
    font-size: 1.2rem;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 0 0 4px rgba(27, 177, 220, 0.2);
}

.center-logo-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(to right, #1bb1dc, #02cfcf);
    color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 2;
    box-shadow: 0 0 40px rgba(27, 177, 220, 0.3);
}


.shadow-pulse {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(27, 177, 220, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(27, 177, 220, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(27, 177, 220, 0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .circle-diagram-wrapper {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .circle-step {
        position: static !important;
        transform: none !important;
        margin-bottom: 1.5rem;
    }

    .circle-svg,
    .center-logo-circle {
        display: none;
    }
}


/* ======= End how it works Styles ======= */

/* ======= 15. Start Domain Pricing Section Styles ======= */
.bg-dark-gradient {
    background: linear-gradient(135deg, #121212, #1b1f3b);
}

.text-gradient-primary {
    background: linear-gradient(90deg, #1bb1dc, #00e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.domain-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s ease-in-out;
    background: #181a2a;
    border-radius: 24px;
    padding: 2.5rem 2rem 3rem;
    box-shadow: 0 10px 20px rgba(27, 177, 220, 0.3);
    position: relative;
    transition: transform 0.35s cubic-bezier(.25, .8, .25, 1), box-shadow 0.35s ease;
    cursor: pointer;
    user-select: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.domain-card:hover,
.domain-card:focus {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 25px 40px rgba(27, 177, 220, 0.6);
    outline: none;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background-color: #1bb1dc;
    border-color: #1bb1dc;
    color: #000;
    outline: none;
}

.btn-gradient-primary {
    background: linear-gradient(135deg, #1bb1dc, #413e66);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-gradient-primary:hover,
.btn-gradient-primary:focus {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    outline: none;
}

/* ======= End Domain Pricing Section Styles ======= */

/* ======= 16. Start Why Thousands Trust Oxnames Styles ======= */
.why-trust-section {
    background: #f4f7fc;
}

.why-trust-section .trust-card h3 {
    font-size: 18px;
}

.text-gradient {
    background: linear-gradient(90deg, #1bb1dc, #413e66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.icon-box {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border: 2px solid #1bb1dc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #1bb1dc;
    background: white;
    box-shadow: 0 4px 10px rgba(27, 177, 220, 0.1);
    transition: all 0.3s ease;
}

.icon-box:hover {
    background-color: #1bb1dc;
    color: white;
    border-color: #1bb1dc;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(27, 177, 220, 0.2);
}

.btn-gradient {
    background: linear-gradient(90deg, #1bb1dc, #1bb1dc);
    padding: 14px 48px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 36px;
    text-decoration: none;
    box-shadow: 0px 8px 18px rgba(27, 177, 220, 0.3);
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-gradient:hover,
.btn-gradient:focus {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(27, 177, 220, 0.5);
    color: white;
    outline: none;
}

.trust-image {
    max-width: 320px;
    filter: drop-shadow(0 8px 15px rgba(27, 177, 220, 0.3));
}

@media (max-width: 768px) {
    .trust-image {
        width: 220px;
    }

    .btn-gradient {
        padding: 12px 32px;
        font-size: 1rem;
    }

}

/* ======= End Why Thousands Trust Oxnames Styles ======= */

/* ======= 17. Start Testimonial Section  ======= */

.testimonial-section {
    position: relative;
    overflow: hidden;
}

/* Testimonial Cards */
.testimonial-item {
    background: #e9f4f9;
    border-radius: 1rem;
    /* box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08); */
    text-align: left;
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-radius 0.3s ease;
    min-height: 310px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border-bottom: 3px solid #89e1fa;
}

.testimonial-item h3 {
    font-size: 16px;
}

/* Active center card refinement */
.owl-item.center .testimonial-item {
    border-radius: 1.25rem;
    outline: 3px solid rgba(27, 177, 220, 0.15);
    outline-offset: 0px;
    position: relative;
    background: linear-gradient(-45deg, #1bb1dc, #413e66, #08637d, #2e2c4e);
    overflow: hidden;
}

.owl-item .testimonial-text {
    height: 160px;
    overflow: auto;
}

.owl-item.center .testimonial-text {
    font-size: 1.22rem;
    color: #fff;
}

.owl-item.center .testimonial-item h3,
.owl-item.center .testimonial-item small {
    color: #fff !important;
}

/* Quote icon */
.quote-icon i {
    font-size: 2.6rem;
    color: #1bb1dc;
    font-style: normal;
    position: relative;
}

.quote-icon i::before {
    content: "“";
    position: absolute;
    left: 0;
    top: -0.6rem;
    font-size: 3.6rem;
    opacity: 0.15;
    font-weight: 900;
    font-family: serif;
}

/* Text refinement */
.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.65;
    color: #555;
    margin-bottom: 0;
}

/* Avatar placeholder */
.avatar-placeholder {
    background: linear-gradient(135deg, #1bb1dc, #413e66);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50%;
}

.owl-item.center .testimonial-item .avatar-placeholder {
    background: linear-gradient(135deg, #98e8ff, #8682b3);
}

/* Star rating styling */
.star-rating {
    color: #ffb400;
    /* Gold color */
    font-size: 1rem;
    display: inline-flex;
    gap: 4px;
    user-select: none;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .testimonial-item {
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        height: auto;
        font-size: 0.95rem;
    }

    .avatar-placeholder {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .quote-icon i {
        font-size: 2rem;
    }
}

/* ======= End Testimonial Section  ======= */

/* ======= 18. Start FAQ Section Styles ======= */
.faq-section {
    background: linear-gradient(135deg, #f9fbff, #ffffff);
}

.premium-faq .accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.premium-faq .accordion-button::after {
    display: none !important;
}

.premium-faq .accordion-button {
    background: transparent;
    color: #2c3e50;
    font-weight: 500;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, #eafaff, #ffffff);
    color: #1bb1dc;
}

.accordion-body {
    background: #fff;
    color: #555;
    padding: 16px 20px;
}

.icon-toggle {
    background: #eafaff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #1bb1dc;
    flex-shrink: 0;
    margin-left: 15px;
}

.accordion-button:not(.collapsed) .icon-toggle {
    background: #1bb1dc;
    color: #fff;
}

/* Responsive */
@media (max-width: 991.98px) {

    .faq-section .col-lg-5,
    .faq-section .col-lg-7 {
        text-align: center !important;
    }

    .faq-section .accordion-button {
        font-size: 1.1rem;
        padding: 14px 16px;
    }

    .faq-section svg {
        max-width: 300px;
        margin: 0 auto 2rem;
        display: block;
    }
}

@media (max-width: 575.98px) {
    .faq-section .accordion-button {
        font-size: 1rem;
        padding: 12px 14px;
    }

    .icon-toggle {
        width: 24px;
        height: 24px;
        font-size: 12px;
        margin-left: 10px;
    }
}

/* ======= End FAQ Section Styles ======= */

/* ======= 19. Start Cta Section Styles ======= */
.cta-box {
    background: #0a1435;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(27, 177, 220, 0.12) 10%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(27, 177, 220, 0.12) 10%, transparent 40%);
    color: #d0e6ff;
    padding: 3rem 2rem;
    border-radius: 2rem;
    box-shadow: 0 14px 48px rgba(27, 177, 220, 0.45);
    font-family: 'Poppins', sans-serif;
}

.cta-title {
    font-weight: 900;
    font-size: 2.8rem;
    line-height: 1.15;
}

.gradient-text {
    background: linear-gradient(90deg, #1bb1dc 0%, #3ad7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cta-subtitle {
    font-weight: 400;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: #a3bbd7;
    line-height: 1.5;
}

.cta-btn {
    padding: 1rem 3.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #0a1435;
    background: linear-gradient(90deg, #3ad7ff 0%, #1bb1dc 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 12px 36px rgba(58, 215, 255, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background: linear-gradient(90deg, #1bb1dc 0%, #3ad7ff 100%);
    box-shadow: 0 18px 48px rgba(27, 177, 220, 0.85);
    transform: translateY(-4px);
    color: #fff;
}

@media (max-width: 575.98px) {
    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .cta-btn {
        padding: 0.85rem 2.5rem;
        font-size: 1rem;
    }
}

/* ======= End Cta Section Styles ======= */

/* ======= 20. Start Blog Feed Section Styles ======= */
.blog-feed-section {
    background: linear-gradient(135deg, #e6f3fb 0%, #d7e9fc 40%, #f9fbfd 100%);
    background-image: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="29" stroke="%231bb1dc" stroke-opacity="0.05" stroke-width="2"/></svg>');
    background-repeat: repeat;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.blog-feed-title {
    font-weight: 900;
    font-size: 2.75rem;
    color: #1bb1dc;
    text-align: center;
    margin-bottom: 3.5rem;
    text-shadow: 0 1px 3px rgba(27, 177, 220, 0.5);
}

.blog-card {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    /* background: #fff; */
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(27, 177, 220, 0.12);
}

.blog-card:hover {
    box-shadow: 0 16px 40px rgba(27, 177, 220, 0.25);
    transform: translateY(-8px);
}

.blog-card-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.blog-category {
    display: inline-block;
    background-color: #1bb1dc;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    user-select: none;
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card-excerpt {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.blog-meta {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.blog-card-readmore {
    font-weight: 600;
    font-size: 1rem;
    color: #1bb1dc;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.blog-card-readmore:hover,
.blog-card-readmore:focus {
    color: #0d8cbf;
    border-color: #0d8cbf;
}

.readmore-icon {
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.blog-card-readmore:hover .readmore-icon {
    transform: translateX(4px);
}

.blog-card {
    background: #f9fbff !important;
    /* very light blue, different from white */
    border: 1.5px solid rgba(27, 177, 220, 0.3);
    box-shadow: 0 8px 20px rgba(27, 177, 220, 0.15);
    padding: 2rem;
    border-radius: 12px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.blog-card:hover {
    box-shadow: 0 16px 40px rgba(27, 177, 220, 0.35);
    transform: translateY(-8px);
}

/* Responsive */
@media (max-width: 767.98px) {
    .blog-feed-title {
        font-size: 2rem;
    }

    .blog-card-title {
        font-size: 1.25rem;
    }

    .blog-card-excerpt {
        font-size: 0.95rem;
    }
}

/* ======= End Blog Feed Section Styles ======= */

/* ======= 21. Start Client Logo Section Styles ======= */
.logo-carousel .owl-carousel .item img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    margin: auto;
    display: block;
    padding: 5px 0;
}

/* ======= End Client Logo Section Styles ======= */

/* ======= 22. Start Footer Section Styles ======= */
.ox-footer {
    background: linear-gradient(135deg, #0a162a 0%, #141d2f 100%);
    color: #cbd5e1;
    padding-top: 5rem;
}

.footer-logo {
    max-width: 180px;
    filter: drop-shadow(0 0 8px rgba(27, 177, 220, 0.75));
    margin-bottom: 1.6rem;
}

.footer-about-text {
    color: #a0aec0;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 300px;
    margin-bottom: 2rem;
}

.footer-main h5 {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #00b8f4;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.4rem;
    position: relative;
}

.footer-main h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background: #00b8f4;
    border-radius: 3px;
    box-shadow: 0 0 12px #00b8f4;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links li a {
    color: #a0aec0;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #00e1ff;
}

.footer-social {
    margin-top: 1.4rem;
}

.footer-social a.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(0, 184, 244, 0.12);
    border-radius: 50%;
    margin-right: 1rem;
    color: #a0aec0;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(0, 184, 244, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.footer-social a.social-link:hover {
    background: rgba(0, 184, 244, 0.5);
    box-shadow: 0 0 16px #00e1ff;
    color: #00e1ff;
    transform: translateY(-3px);
}

/* Newsletter */
.footer-newsletter-text {
    color: #94a3b8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    max-width: 320px;
}

.footer-newsletter {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 14px rgba(0, 184, 244, 0.4);
    transition: box-shadow 0.4s ease;
    max-width: 100%;
    width: 320px;
}

.footer-newsletter:hover {
    box-shadow: inset 0 0 18px rgba(0, 225, 255, 0.7);
}

.footer-newsletter input {
    flex: 1;
    border: none;
    padding: 0.85rem 1.3rem;
    background: transparent;
    color: #cbd5e1;
    font-size: 1.05rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-newsletter input::placeholder {
    color: rgba(203, 213, 225, 0.5);
}

.footer-newsletter input:focus {
    outline: none;
    color: #fff;
}

.footer-newsletter button {
    background: #00b8f4;
    border: none;
    padding: 0 1.4rem;
    color: #021927;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 8px #00b8f4;
}

.footer-newsletter button:hover {
    background: #009ecb;
    box-shadow: 0 0 16px #009ecb;
}

/* Divider */
.footer-divider {
    border-color: rgba(0, 184, 244, 0.3);
    margin: 3rem 0 2rem;
}

/* Contact info */
.contact-info {
    padding-bottom: 3rem;
}

.contact-info p {
    font-size: 1.05rem;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.contact-info p strong {
    color: #00b8f4;
    font-weight: 700;
}

.contact-link {
    color: #94a3b8;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
    font-size: 1.05rem;
}

.contact-link:hover {
    color: #00e1ff;
    text-decoration: underline;
}

/* Footer bottom */
.footer-bottom {
    background: #07131f;
    border-top: 1px solid rgba(0, 184, 244, 0.35);
    padding: 1.6rem 1.5rem;
    font-size: 0.95rem;
    color: #94a3b8;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.footer-bottom a.footer-bottom-link {
    color: #94a3b8;
    font-weight: 700;
    text-decoration: none;
    margin-left: 0.9rem;
    margin-right: 0.9rem;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-bottom a.footer-bottom-link:hover {
    color: #00e1ff;
    text-decoration: underline;
}

.footer-newsletter {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 14px rgba(0, 184, 244, 0.4);
    max-width: 100%;
    /* allow full container width */
    width: 320px;
    /* max width on large screens */
    min-width: 0;
    /* allow shrinking inside flex */
}

.footer-newsletter input {
    flex: 1 1 auto;
    /* allow grow and shrink */
    min-width: 0;
    /* prevent overflow */
    border: none;
    padding: 0.85rem 1.3rem;
    background: transparent;
    color: #cbd5e1;
    font-size: 1.05rem;
    font-weight: 600;
}

.footer-newsletter button {
    flex: 0 0 auto;
    /* keep fixed size */
    background: #00b8f4;
    border: none;
    padding: 0 1.4rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 0 10px #00b8f4;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}


/* Responsive */
@media (max-width: 575.98px) {
    .footer-newsletter {
        width: 100%;
    }

    .footer-newsletter input {
        font-size: 1rem;
        padding: 0.65rem 1rem;
    }

    .footer-newsletter button {
        padding: 0 1rem;
        font-size: 1.1rem;
    }

    .footer-bottom a.footer-bottom-link {
        font-size: 13px;
    }
}

/* ======= End Footer Section Styles ======= */