/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */

/* Modern Orange Theme for StillDomains.com */

:root {
    --primary-color: #ff8500;
    --primary-dark: #e67700;
    --primary-light: #ffb74d;
    --primary-very-light: #fff8f0;
    --text-color: #333333;
    --text-light: #777777;
    --background-light: #f8f8f8;
    --border-color: #e0e0e0;
    --border-radius-sm: 4px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    --box-shadow-hover: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* General Styles */
body {
    color: var(--text-color);
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover, a:focus {
    color: var(--primary-dark);
    text-decoration: none;
}

/* Typography Improvements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #444;
}

/* Header Lined */
div.header-lined h1 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    font-weight: 600;
}

div.header-lined .breadcrumb > .active {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    padding: 8px 16px;
    transition: var(--transition);
    border: none;
    box-shadow: var(--box-shadow);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-dark);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Combined Header and Navbar */
section#combined-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0;
}

/* Top utility navigation */
section#combined-header .top-utility-nav {
    display: flex;
    justify-content: flex-end;
    padding: 5px 15px;
    margin: 0;
    list-style: none;
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-color);
}

section#combined-header .top-utility-nav > li {
    margin-left: 15px;
    font-size: 12px;
}

section#combined-header .top-utility-nav > li > a {
    color: var(--text-light);
    transition: var(--transition);
}

section#combined-header .top-utility-nav > li > a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Navbar with logo */
.navbar-main {
    background-color: #fff;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
    border: none;
    min-height: 70px;
}

.navbar-main .navbar-brand {
    padding: 10px 15px;
    height: auto;
}

.navbar-main .navbar-brand.logo img {
    max-height: 50px;
    transition: var(--transition);
}

.navbar-main .navbar-brand.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 50px;
}

.navbar-main .navbar-nav {
    margin-top: 10px;
}

.navbar-main .navbar-nav > li > a {
    color: var(--text-color);
    font-weight: 500;
    padding: 15px 18px;
    transition: var(--transition);
}

.navbar-main .navbar-nav > li > a:hover,
.navbar-main .navbar-nav > li > a:focus,
.navbar-main .navbar-nav > .active > a,
.navbar-main .navbar-nav > .active > a:hover,
.navbar-main .navbar-nav > .active > a:focus,
.navbar-main .navbar-nav > .open > a,
.navbar-main .navbar-nav > .open > a:hover,
.navbar-main .navbar-nav > .open > a:focus {
    color: var(--primary-color);
    background-color: transparent;
}

.navbar-main .dropdown-menu {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    padding: 10px 0;
    margin-top: 5px;
}

.navbar-main .dropdown-menu > li > a {
    color: var(--text-color);
    padding: 8px 20px;
    transition: var(--transition);
}

.navbar-main .dropdown-menu > li > a:hover,
.navbar-main .dropdown-menu > li > a:focus {
    color: var(--primary-color);
    background-color: var(--background-light);
}

/* Language chooser in navbar */
.navbar-main .navbar-right .dropdown-toggle {
    padding: 15px 10px;
}

/* Admin button in navbar */
.navbar-main .btn-logged-in-admin {
    padding: 15px 10px;
    background: none;
    box-shadow: none;
    color: var(--text-color);
}

.navbar-main .btn-logged-in-admin:hover {
    color: var(--primary-color);
    transform: none;
    box-shadow: none;
}

.navbar-main .btn-logged-in-admin i {
    font-size: 16px;
}

/* Hide specific navbar elements */
.navbar-main li[menuItemName="Knowledgebase"],
.navbar-main li[menuItemName="Network Status"] {
    display: none !important;
}

/* Homepage Section Styling */
.feature-boxes {
    padding: 50px 0;
    background-color: #fff;
    position: relative;
    margin-top: 50px;
}

.feature-boxes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.1), rgba(0,0,0,0));
}

.testimonials-section {
    padding: 80px 0;
    background: url('https://images.unsplash.com/photo-1526374965328-7f61d4dc18c5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 133, 0, 0.05) 0%, rgba(255, 133, 0, 0.15) 100%);
    z-index: 0;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.container {
    padding-top: 10px;
    padding-bottom: 10px;
}

.news-container {
    padding: 10px 6px;
}

div.news-container blockquote {
    background-color: #f8f9fa;
    font-size: 14px;
}

.testimonials-section .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.testimonials-section .col-md-4 {
    display: flex;
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    width: 33.33333%;
    box-sizing: border-box;
    float: left;
}

@media (max-width: 991px) {
    .testimonials-section .col-md-4 {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .testimonials-section .col-md-4 {
        width: 100%;
    }
}

/* Clear fix for the row */
.testimonials-section .row:after {
    content: "";
    display: table;
    clear: both;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.testimonials-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.testimonials-header h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 133, 0, 0.1);
    padding: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    height: 100%;
    min-height: 280px;
    margin: 0;
    box-sizing: border-box;
}

.testimonial-card .quote {
    flex-grow: 1;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.testimonial-card .quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -7px;
    font-size: 40px;
    color: var(--primary-light);
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
}

.testimonial-card .author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.testimonial-card .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card .author-info {
    flex-grow: 1;
}

.testimonial-card .author-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.testimonial-card .author-info p {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
}

@media (max-width: 767px) {
    .testimonials-section .col-md-4 {
        margin-bottom: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-card .quote {
        font-size: 15px;
        line-height: 1.5;
    }
}

.cta-section {
    padding: 125px 0;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 133, 0, 0.9) 0%, rgba(230, 119, 0, 0.85) 100%);
    z-index: 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3QgaWQ9InBhdHRlcm4tYmFja2dyb3VuZCIgd2lkdGg9IjQwMCUiIGhlaWdodD0iNDAwJSIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwKSI+PC9yZWN0PiA8Y2lyY2xlIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiIGN4PSIyMCIgY3k9IjIwIiByPSIxIj48L2NpcmNsZT48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IGZpbGw9InVybCgjcGF0dGVybikiIGhlaWdodD0iMTAwJSIgd2lkdGg9IjEwMCUiPjwvcmVjdD48L3N2Zz4=');
    opacity: 0.5;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 35px;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%) rotate(45deg);
    transition: all 0.4s ease;
    z-index: -1;
}

.cta-btn:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.cta-btn-primary {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn-primary:hover {
    background-color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: var(--primary-color);
}

.cta-btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

@media (max-width: 767px) {
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-btn {
        padding: 12px 25px;
    }
}

.feature-box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    height: 100%;
    min-height: 400px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.feature-boxes .col-md-4 {
    display: flex;
    margin-bottom: 30px;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    z-index: -1;
    transform: scale(0.5);
    transition: all 0.5s ease;
}

.feature-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.feature-box:hover::before {
    opacity: 1;
    transform: scale(1);
}

.feature-box .icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.feature-box:hover .icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-dark);
}

.feature-box h3 {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 22px;
    font-weight: 600;
}

.feature-box p {
    margin-bottom: 20px;
    color: var(--text-light);
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.6;
}

.feature-box .btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    margin-top: auto;
    align-self: center;
    font-weight: 500;
}

.feature-box .btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .feature-box {
        min-height: 350px;
    }
}

@media (max-width: 767px) {
    .feature-box {
        min-height: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 767px) {
    section#combined-header .top-utility-nav {
        display: none;
    }
    
    .navbar-main .navbar-brand {
        padding: 10px 15px;
    }
    
    .navbar-main .navbar-brand.logo img {
        max-height: 40px;
    }
    
    .navbar-main .navbar-toggle {
        margin-top: 18px;
    }
    
    .navbar-main .navbar-nav {
        margin-top: 0;
    }
    
    /* Fix dropdown menu text color in mobile view */
    .navbar-main .navbar-nav .open .dropdown-menu {
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
    }
    
    .navbar-main .navbar-nav .open .dropdown-menu > li > a {
        color: var(--text-color);
        padding: 10px 30px;
        line-height: 24px;
        font-weight: 500;
        transition: var(--transition);
    }
    
    .navbar-main .navbar-nav .open .dropdown-menu > li > a:hover,
    .navbar-main .navbar-nav .open .dropdown-menu > li > a:focus,
    .navbar-main .navbar-nav .open .dropdown-menu > li.active > a {
        color: var(--primary-color);
        background-color: transparent;
    }
    
    /* Ensure active items in dropdown have the same styling */
    .navbar-main .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-main .navbar-nav .open .dropdown-menu > .active > a:hover,
    .navbar-main .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: var(--primary-color);
        background-color: transparent;
    }
}

/* Primary Action Button */
ul.top-nav > li.primary-action > a.btn {
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    padding: 8px 16px;
    font-weight: 500;
    transition: var(--transition);
}

ul.top-nav > li.primary-action > a.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

/* Home Banner */
section#home-banner {
    /* background: linear-gradient(135deg, rgba(255, 133, 0, 0.75) 0%, rgba(230, 119, 0, 0.75) 100%), url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}


section#home-banner .container {
    position: relative;
    z-index: 1;
}

section#home-banner h2 {
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

section#home-banner .form-control {
    height: 60px;
    border-radius: var(--border-radius);
    border: none;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
    width: 100%;
}

section#home-banner .domain-input-group {
    margin-bottom: 20px;
}

section#home-banner .domain-search-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

section#home-banner .btn {
    height: 60px;
    border-radius: var(--border-radius-lg);
    font-size: 18px;
    font-weight: 600;
    padding: 0 35px;
    transition: all 0.3s ease;
    min-width: 160px;
}

section#home-banner .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* section#home-banner .search-btn {
    background-color: #ff8500;
} */

section#home-banner .transfer-btn {
    background-color: #28a745;
}

@media (max-width: 767px) {
    section#home-banner {
        padding: 80px 0;
    }
    
    section#home-banner h2 {
        font-size: 2rem;
    }
}

/* Hero Section Styles */
#hero-banner {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

#hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1557682250-33bd709cbe85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

#hero-banner h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

#hero-banner p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-cta {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: var(--primary-color);
}

/* Domain Search Section */
.domain-search-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    color: #fff;
}

/* Slideshow Background */
.slideshow-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slideshow-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 0s;
    transform: scale(1);
    will-change: transform, opacity;
}

.slideshow-item.active {
    opacity: 1;
}

.slideshow-item.zoom-active {
    animation: slowZoom 13s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}


.slideshow-item.previous {
    opacity: 0;
    transform: scale(1.10) !important; /* Force maintain zoom level */
    transition: opacity 2s ease-in-out;
    animation: none !important; /* Prevent animation reset */
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    /* 20% {
        transform: scale(1.02);
    }
    50% {
        transform: scale(1.05);
    }
    80% {
        transform: scale(1.08);
    } */
    100% {
        transform: scale(1.10);
    }
}

.slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 133, 0, 0.6), rgba(0, 0, 0, 0.7));
    z-index: 2;
    box-shadow: inset 0 0 100px rgba(255, 133, 0, 0.3);
    animation: orangePulse 8s infinite alternate;
}

.orange-glow-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: radial-gradient(ellipse at top, rgba(255, 133, 0, 0.6) 0%, rgba(255, 133, 0, 0) 70%);
    z-index: 3;
    pointer-events: none;
}

.orange-glow-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: radial-gradient(ellipse at bottom, rgba(255, 133, 0, 0.6) 0%, rgba(255, 133, 0, 0) 70%);
    z-index: 3;
    pointer-events: none;
}

@keyframes orangePulse {
    0% {
        box-shadow: inset 0 0 100px rgba(255, 133, 0, 0.3);
    }
    50% {
        box-shadow: inset 0 0 150px rgba(255, 133, 0, 0.5);
    }
    100% {
        box-shadow: inset 0 0 100px rgba(255, 133, 0, 0.3);
    }
}

/* Add orange glow to form elements */
.domain-input-group .form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 133, 0, 0.5), 0 2px 5px rgba(0, 0, 0, 0.1);
    border-color: #ff8500;
}

.search-btn {
    background-color: #ff8500;
    border-color: #ff8500;
    box-shadow: 0 0 15px rgba(255, 133, 0, 0.5);
}

.search-btn:hover {
    background-color: #ff9500;
    border-color: #ff9500;
    box-shadow: 0 0 20px rgba(255, 133, 0, 0.7);
}

#domain-search {
    position: relative;
    z-index: 3;
    padding: 15px 5px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 30px rgba(255, 133, 0, 0.3);
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.domain-search-wrapper {
    width: 100% !important;
    max-width: 700px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.domain-search-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.domain-input-group {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.domain-input-group .form-control {
    height: 46px;
    border-radius: 4px;
    border: none;
    font-size: 15px;
    padding: 8px 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
}

.domain-input-group .form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 133, 0, 0.3), 0 2px 5px rgba(0, 0, 0, 0.1);
}

.domain-search-buttons-wrapper {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
}

.domain-search-buttons {
    display: inline-block !important;
    width: auto !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
}

.domain-search-buttons .btn {
    margin: 5px 3px !important;
    padding: 8px 15px !important;
    font-weight: 600 !important;
    min-width: 100px !important;
    max-width: none !important;
    width: auto !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    font-size: 14px !important;
    display: inline-block !important;
    float: none !important;
    vertical-align: middle !important;
}

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

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

.transfer-btn {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.transfer-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive styles for the domain search section */
@media (max-width: 768px) {
    .domain-search-section {
        padding: 60px 15px;
    }
    
    .domain-search-section h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    #domain-search {
        padding: 20px 15px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .domain-input-group {
        padding: 12px;
        width: 100%;
        max-width: 100%;
    }
    
    .domain-input-group .form-control {
        height: 45px;
        font-size: 14px;
        width: 100%;
    }
    
    .domain-search-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .domain-search-buttons .btn {
        padding: 10px 15px;
        font-size: 14px;
        margin: 5px;
        min-width: 120px;
    }
    
    /* Fix for reCAPTCHA on tablets */
    #divDynamicRecaptcha1 {
        transform: scale(0.9);
        transform-origin: center;
        margin: 15px auto 0;
        max-width: 100%;
        overflow: hidden;
    }
}

@media (max-width: 576px) {
    .domain-search-section {
        padding: 50px 10px;
    }
    
    #domain-search {
        padding: 15px 10px;
    }
    
    .domain-search-section h2 {
        font-size: 1.7rem;
        margin-bottom: 15px;
        padding: 0 5px;
    }
    
    .domain-input-group {
        padding: 10px;
    }
    
    .domain-input-group .form-control {
        height: 42px;
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .domain-search-buttons {
        flex-direction: column;
    }
    
    .domain-search-buttons .btn {
        width: 100%;
        margin: 5px 0;
        padding: 10px 15px;
    }
    
    /* Fix for reCAPTCHA on mobile */
    #divDynamicRecaptcha1 {
        transform: scale(0.85);
        transform-origin: center;
        margin: 10px auto 0;
    }
}

@media (max-width: 480px) {
    .domain-search-section {
        padding: 30px 0 !important;
    }
    
    .domain-search-section h2 {
        font-size: 1.4rem !important;
        margin-bottom: 10px !important;
        padding: 0 !important;
    }
    
    #domain-search {
        padding: 8px 3px !important;
        margin: 0 !important;
        border-radius: 6px !important;
    }
    
    .domain-search-wrapper {
        padding: 0 3px !important;
    }
    
    .domain-input-group {
        padding: 5px !important;
        margin: 0 !important;
    }
    
    .domain-input-group .form-control {
        height: 38px !important;
        font-size: 13px !important;
        padding: 6px 8px !important;
    }
    
    .domain-search-buttons {
        display: block !important;
        text-align: center !important;
        padding: 0 !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
    
    .domain-search-buttons .btn {
        margin: 3px 5px !important;
        padding: 7px 12px !important;
        min-width: 80px !important;
        max-width: none !important;
        width: auto !important;
        font-size: 12px !important;
        display: inline-block !important;
        float: none !important;
        vertical-align: middle !important;
    }
    
    /* Fix for reCAPTCHA on small mobile */
    #divDynamicRecaptcha1 {
        transform: scale(0.77) !important;
        transform-origin: center top !important;
        margin: 5px auto 0 !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .domain-search-section {
        padding: 60px 0 !important;
    }
    
    .domain-search-section h2 {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
    }
    
    #domain-search {
        padding: 5px 2px !important;
        border-radius: 5px !important;
    }
    
    .domain-search-wrapper {
        padding: 0 2px !important;
    }
    
    .domain-input-group {
        padding: 3px !important;
    }
    
    .domain-input-group .form-control {
        height: 34px !important;
        font-size: 12px !important;
        padding: 5px 6px !important;
    }
    
    .domain-search-buttons {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .domain-search-buttons .btn {
        padding: 6px 10px !important;
        font-size: 11px !important;
        margin: 2px 4px !important;
        height: 40px !important;
        min-width: 70px !important;
        max-width: none !important;
        width: auto !important;
        display: inline-block !important;
        float: none !important;
        vertical-align: middle !important;
    }
    
    /* Fix for reCAPTCHA on very small mobile */
    #divDynamicRecaptcha1 {
        transform: scale(0.6) !important;
        transform-origin: center top !important;
        margin: 3px auto 0 !important;
    }
    
    /* Force text wrapping on buttons */
    .btn {
        white-space: normal !important;
        word-break: break-word !important;
    }
}

/* Extra small screens emergency fix */
@media (max-width: 320px) {
    .domain-search-section h2 {
        font-size: 1rem !important;
    }
    
    .domain-input-group .form-control {
        height: 32px !important;
        font-size: 11px !important;
        padding: 4px !important;
    }
    
    .domain-search-buttons .btn {
        padding: 5px 8px !important;
        font-size: 10px !important;
        letter-spacing: -0.5px !important;
        min-width: 60px !important;
        max-width: none !important;
        width: auto !important;
        display: inline-block !important;
        float: none !important;
        vertical-align: middle !important;
        margin: 2px 3px !important;
    }
    
    #divDynamicRecaptcha1 {
        transform: scale(0.55) !important;
    }
}

/* Home Shortcuts */
.home-shortcuts {
    background: #fff;
    border-top: 1px solid var(--border-color);
    /* border-bottom: 1px solid var(--border-color); */
    padding: 20px 0;
    color: var(--text-color);
}

.home-shortcuts ul {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 800px;
    list-style-type: none;
}

.home-shortcuts li {
    flex: 1;
    text-align: center;
    border-right: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    justify-content: center;
}

.home-shortcuts li:first-child {
    border-left: 1px solid var(--border-color);
}

.home-shortcuts li a {
    color: var(--text-color);
    padding: 15px 10px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.home-shortcuts li:hover {
    background-color: var(--background-light);
}

.home-shortcuts li i {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 8px;
    transition: var(--transition);
}

.home-shortcuts li:hover i {
    transform: translateY(-3px);
}

.home-shortcuts li p {
    font-weight: 500;
    margin-top: 8px;
}

.home-shortcuts .lead {
    color: var(--text-color);
}

@media (max-width: 767px) {
    .home-shortcuts ul {
        flex-direction: column;
        max-width: 400px;
    }
    
    .home-shortcuts li {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .home-shortcuts li:first-child {
        border-top: 1px solid var(--border-color);
    }
    
    .home-shortcuts li a {
        padding: 15px;
    }
}

/* Client Area Styling */

/* Tiles/Stats Section */
.tiles {
    margin: 0 0 30px 0;
    display: flex;
    flex-wrap: wrap;
}

.tiles .tile {
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border: none;
}

.tiles .tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    background: rgba(255, 255, 255, 0.9);
}

.tiles .tile .icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.tiles .tile:hover .icon {
    transform: scale(1.1);
}

.tiles .tile .stat {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-color);
}

.tiles .tile .title {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.tiles .tile .highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
}

/* Home KB Search */
.home-kb-search {
    position: relative;
    margin-bottom: 30px;
}

.home-kb-search .form-control {
    height: 60px;
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.home-kb-search .form-control:focus {
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
}

.home-kb-search i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Panels */
.panel {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 25px;
    overflow: hidden;
}

.panel:hover {
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-3px);
}

.panel-heading {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.panel-heading .panel-title {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.1rem;
}

.panel-body {
    padding: 20px !important;
}

.panel-footer {
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    background-color: rgba(248, 248, 248, 0.7);
    padding: 12px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.panel.panel-accent-orange {
    border-top: 3px solid var(--primary-color);
}

.panel.panel-accent-blue {
    border-top: 3px solid #5bc0de;
}

.panel.panel-accent-green {
    border-top: 3px solid #5cb85c;
}

.panel.panel-accent-red {
    border-top: 3px solid #d9534f;
}

.panel.panel-accent-gold {
    border-top: 3px solid #f0ad4e;
}

/* Client Home Panels */
.client-home-panels .panel > .list-group {
    max-height: none;
}

.client-home-panels .panel > .list-group .list-group-item {
    padding: 12px 20px;
    border-color: rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.client-home-panels .panel > .list-group .list-group-item:hover {
    background-color: rgba(248, 248, 248, 0.7);
}

.client-home-panels .panel > .list-group .list-group-item .label {
    font-size: 85%;
    font-weight: 500;
    padding: 0.3em 0.6em;
}

/* Tables in Client Area */
.table-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 5px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.table-list {
    margin-bottom: 0;
}

.table-list > thead > tr > th {
    background-color: rgba(248, 248, 248, 0.7);
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    color: var(--text-color);
    font-weight: 600;
    padding: 12px 15px;
}

.table-list > tbody > tr > td {
    padding: 12px 15px;
    vertical-align: middle;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.table-list > tbody > tr:hover > td {
    background-color: rgba(248, 248, 248, 0.5);
}

.table-list .label {
    font-size: 85%;
    font-weight: 500;
    padding: 0.3em 0.6em;
}

/* Status Labels */
.label.status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.label.status-active {
    background-color: rgba(92, 184, 92, 0.2);
    color: #5cb85c;
}

.label.status-pending {
    background-color: rgba(240, 173, 78, 0.2);
    color: #f0ad4e;
}

.label.status-suspended {
    background-color: rgba(217, 83, 79, 0.2);
    color: #d9534f;
}

.label.status-terminated, .label.status-expired, .label.status-cancelled {
    background-color: rgba(119, 119, 119, 0.2);
    color: #777;
}

.label.status-fraud {
    background-color: rgba(156, 39, 176, 0.2);
    color: #9c27b0;
}

/* Buttons */
.btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
}

.btn-default {
    background-color: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--text-color);
}

.btn-default:hover, .btn-default:focus, .btn-default:active {
    background-color: rgba(248, 248, 248, 0.9);
    border-color: rgba(0, 0, 0, 0.15);
    color: var(--text-color);
}

.btn-success {
    background-color: #ff8500;
    border-color: #ff8500;
}

.btn-success:hover, .btn-success:focus, .btn-success:active {
    background-color: #ffa442;
    border-color: #ffa442;
}

.btn-danger {
    background-color: #d9534f;
    border-color: #d9534f;
}

.btn-danger:hover, .btn-danger:focus, .btn-danger:active {
    background-color: #c9302c;
    border-color: #c9302c;
}

.btn-warning {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.btn-warning:hover, .btn-warning:focus, .btn-warning:active {
    background-color: #eea236;
    border-color: #eea236;
}

.btn-info {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.btn-info:hover, .btn-info:focus, .btn-info:active {
    background-color: #46b8da;
    border-color: #46b8da;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
}

.btn-xs {
    padding: 1px 5px;
    font-size: 12px;
}

.btn-group {
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Dropdown Menus */
.dropdown-menu {
    border-radius: var(--border-radius);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 0;
}

.dropdown-menu > li > a {
    padding: 8px 20px;
    color: var(--text-color);
    transition: all 0.2s ease;
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    background-color: rgba(248, 248, 248, 0.7);
    color: var(--primary-color);
}

.dropdown-menu > li > a i {
    margin-right: 8px;
    color: var(--text-light);
}

/* Pagination */
.pagination {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.pagination > li > a, .pagination > li > span {
    padding: 8px 16px;
    color: var(--text-color);
    background-color: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.pagination > li > a:hover, .pagination > li > span:hover {
    background-color: rgba(248, 248, 248, 0.9);
    color: var(--primary-color);
    z-index: 2;
}

.pagination > .active > a, .pagination > .active > span,
.pagination > .active > a:hover, .pagination > .active > span:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* DataTables Customization */
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
    color: var(--text-color);
    margin-bottom: 15px;
}

.dataTables_wrapper .dataTables_filter input {
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.dataTables_wrapper .dataTables_filter input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
}

.dataTables_wrapper .dataTables_length select {
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.dataTables_wrapper .dataTables_length select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
}

/* Form Controls */
.form-control {
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 12px;
    height: auto;
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
}

.input-group-addon {
    border-radius: var(--border-radius);
    background-color: rgba(248, 248, 248, 0.7);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Client Area Background */
.clientarea-wrapper {
    position: relative;
}

.clientarea-wrapper:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    z-index: -1;
}

.clientarea-wrapper:after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 102, 0, 0.03) 0%, rgba(255, 255, 255, 0) 90%);
    z-index: -1;
}

/* Footer */
section#footer {
    background-color: #fff;
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    color: var(--text-light);
}

section#footer .back-to-top i {
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

section#footer .back-to-top i:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Forms */
.form-control {
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    box-shadow: none;
    transition: var(--transition);
    padding: 10px 15px;
    height: auto;
}

.form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(255, 133, 0, 0.1);
}

/* Pagination */
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.pagination > li > a,
.pagination > li > span {
    border-radius: var(--border-radius-sm);
    margin: 0 3px;
    color: var(--text-color);
}

/* Alerts */
.alert {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--box-shadow);
}

.alert-success {
    background-color: var(--primary-very-light);
    color: var(--primary-dark);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #hero-banner {
        padding: 70px 20px;
    }
    
    #hero-banner h1 {
        font-size: 2.5rem;
    }
    
    #hero-banner p {
        font-size: 1.1rem;
    }
    
    .navbar-main .navbar-nav > li > a {
        padding: 10px 15px;
    }
}

/* Fix for reCAPTCHA positioning */
#divDynamicRecaptcha1 {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 20px auto 0;
    position: relative;
    z-index: 5;
    clear: both;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.domain-search-section .g-recaptcha {
    display: inline-block;
    /* background: rgba(255, 255, 255, 0.1); */
    padding: 10px;
    border-radius: 5px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
    max-width: 100%;
}

/* Ensure the iframe inside recaptcha is responsive */
.g-recaptcha iframe {
    max-width: 100%;
}
