/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

a {
    text-decoration: none;
    color: #0066cc;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
    max-width: 150px;
    height: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
	text-transform: uppercase;
}

/* Navigation Styles */
nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin-left: 1.8rem;
	height: 40px; /* Set a fixed height for the li */
	line-height: 40px; /* Match the height */
	position: relative; /* For dropdown positioning */
}

.nav-list a {
    text-decoration: none;
    color: #333;
	font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #007bff;
}

.nav-list img {
	transition: transform .2s;
}

.nav-list img:hover {
    -ms-transform: scale(1.2); /* IE 9 */
    -webkit-transform: scale(1.2); /* Safari 3-8 */
    transform: scale(1.2); 
}

.nav-list i {
	transition: transform 0.2s ease;
}

.nav-list i:hover {
    -ms-transform: scale(1.5); /* IE 9 */
    -webkit-transform: scale(1.5); /* Safari 3-8 */
    transform: scale(1.5); 
}

/* Dropdown Styles */
.nav-list .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 4px;
    min-width: 200px;
    display: none;
    z-index: 1000;
    list-style: none;
    padding: 0;
}

.nav-list li:hover .dropdown {
    display: block;
}

.nav-list .dropdown li {
    margin: 0;
    height: auto;
    line-height: normal;
    padding: 0.7rem 1rem;
}

.nav-list .dropdown li a {
    font-size: 14px;
    color: #333;
    display: block;
}

.nav-list .dropdown li a:hover {
    color: #007bff;
    background: #f1f5f9;
}

/* Nav Tooltip Badge */
.nav-tooltip {
  position: relative;
  display: inline-block;
}

.nav-tooltip .tooltiptext {
  max-width: 100px;
  background-color: #ff4900;
  color: #fff;
  font-size: 9px;
  text-align: center;
  line-height: 12px;
  border-radius: 6px;
  padding: 2px;
  
  /* Position the nav tooltip */
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 100%;
  margin-left: -20px;
  margin-bottom: -10px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #333;
    transition: all 0.3s;
}

/* Force Mobile Menu on Desktop for Specific Page */
body.mobile-menu-desktop .menu-toggle {
    display: flex;
}

body.mobile-menu-desktop .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    padding-top: 80px;
}

body.mobile-menu-desktop .nav-list.active {
    right: 0;
}

body.mobile-menu-desktop .nav-list li {
    margin: 1.5rem 0;
    height: auto;
    line-height: normal;
    width: 100%;
    text-align: center;
}

body.mobile-menu-desktop .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

body.mobile-menu-desktop .menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

body.mobile-menu-desktop .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

body.mobile-menu-desktop .nav-list .dropdown {
    position: static;
    display: none;
    background: #f9f9f9;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

body.mobile-menu-desktop .nav-list .dropdown.active {
    display: block;
}

body.mobile-menu-desktop .nav-list .dropdown li {
    padding: 0.7rem 2rem;
    margin: 0;
    text-align: center;
}

body.mobile-menu-desktop .nav-list .dropdown li a {
    font-size: 14px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
    }
    
    .nav-list.active {
        right: 0;
    }
    
	.nav-list li {
        margin: 1.5rem 0;
        height: auto; /* Allow height to adjust for dropdown */
        line-height: normal; /* Reset line-height for mobile */
        width: 100%; /* Ensure full width for better spacing */
        text-align: center; /* Center text for mobile */
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
	
    /* Mobile Dropdown Styles */
    .nav-list .dropdown {
        position: static;
        display: none;
        background: #f9f9f9;
        box-shadow: none;
        border-radius: 0;
        width: 100%;
        padding: 0.5rem 0;
        margin-top: 0.5rem; /* Add spacing above dropdown */
    }

    .nav-list .dropdown.active {
        display: block;
    }

    .nav-list .dropdown li {
        padding: 0.7rem 2rem;
        margin: 0; /* Remove margin to prevent extra spacing */
        text-align: center; /* Center dropdown items */
    }

    .nav-list .dropdown li a {
        font-size: 14px;
    }
}

/* Container */
.container {
    background-color: white;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Modern Home Hero Section */
.home-hero {
    background: linear-gradient(135deg, #0066cc 0%, #003087 100%);
    color: white;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.home-hero::before {
   content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="rgba(255,255,255,0.1)" d="M0,0 Q50,50 100,0 T200,0 V100 H0 Z"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    padding: 2rem;
}

.hero-content h1 {
    font-size: 2.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.9rem;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-features {
    list-style: none;
    padding: 0 1rem;
    margin-bottom: 2rem;
}

.hero-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.hero-features li::before {
    content: '✅';
    color: #4CAF50;
    margin-right: 0.7rem;
    font-size: 1.2rem;
}

.hero-domains-box {
    background: white;
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.hero-domains-box:hover {
    transform: translateY(-5px);
}

.hero-domains-box h3 {
    font-size: 1.4rem;
    color: #1a3c6d;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
	border-bottom: 2px solid #007bff;
}

.hero-domains-list {
    list-style: none;
    padding: 0;
}

.hero-domains-list li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*
.hero-domains-list li:last-child {
    border-bottom: none;
}
*/

.hero-domains-list a.domain-link {
    color: #0066cc;
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.2s ease;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    z-index: 10;
    position: relative;
}

.hero-domains-list a.domain-link:hover {
    color: #003087;
}

.hero-domains-list .btn-small {
    background: #e5e7e9;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    color: #333;
    font-size: 0.8rem;
    text-decoration: none;
    cursor: pointer;
    z-index: 10;
    position: relative;
}

.hero-domains-list .btn-small:hover {
    background: #a3d9ff;
}

.hero-domains-box .btn {
    display: inline-block;
    padding: 0.4rem 0.8rem;
	text-align: center;
    background-color: #0066cc;
    font-size: 0.8rem;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.hero-domains-box .btn:hover {
    background-color: #007bff;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .home-hero {
        padding: 3rem 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-domains-box {
		max-width: 500px;
	}

}

/* Pages Hero Section */
.hero {
    background-color: #0066cc;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Search Container */
.search-container {
    background-color: white;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-box input[type="text"] {
    width: 100%;
    padding: 1rem 2.5rem 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.search-box input[type="text"]:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0,123,255,0.3);
}

.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.2rem;
    pointer-events: none; /* Prevents icon from interfering with input clicks */
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 0.5rem;
}

.suggestion-item {
    padding: 0.8rem 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.suggestion-item:hover {
    background: #f1f5f9;
}

.suggestion-item.no-results {
    color: #666;
    cursor: default;
    font-style: italic;
}

.suggestion-header {
    padding: 0.8rem 1rem;
    font-weight: bold;
    color: #0066cc;
    border-top: 1px solid #eee;
    margin-top: 0.5rem;
}

        /* Search Popup Styles */
        .searchpopup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 90%;
            background-color: rgba(0,0,0,0.7);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }
        
        .searchpopup-content {
            background: white;
            border-radius: 8px;
            width: 90%;
            max-width: 900px;
            height: 90%;
            max-height: 700px;
            padding: 20px;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            overflow: hidden;
        }
        
        .close-searchpopup {
            position: absolute;
            top: 10px;
            right: 25px;
            font-size: 28px;
            font-weight: bold;
            color: #0000FF;
            cursor: pointer;
            z-index: 100;
        }
        
        .close-searchpopup:hover {
            color: #000;
        }
        
        #search-iframe {
            width: 100%;
            height: 100%;
            border: none;
        }


/* Domains List */
.domains-list {
    max-width: 1200px;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.domain-card {
    background-color: white;
    border-radius: 5px;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.domain-card h3 {
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.domain-card .price {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.domain-card .category {
    display: inline-block;
    background-color: #f0f0f0;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.domain-card .description {
    margin-bottom: 1rem;
    color: #666;
}

.domain-card .bundle-domains {
    list-style-type: disc;
    margin: 0.5rem 0 1rem 1.5rem;
    color: #333;
    font-size: 0.9rem;
}

.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #0066cc;
    color: white;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0055aa;
}

.btn-big {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #4CAF50;
    color: white;
    border-radius: 5px;
	width: 100%;
    transition: background-color 0.3s;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}

.btn-big:hover {
    background-color: #0055aa;
}

.btn-buy {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #fd6736;
    color: white;
    border-radius: 5px;
	width: 100%;
    transition: background-color 0.3s;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}

.btn-buy:hover {
    background-color: #0055aa;
}

.footer-top {
    background-color: #999;
    color: white;
    padding: 30px 0;
    margin-top: 40px;
}
.footertop-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.footertop-links a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}
.footertop-links a:hover {
    text-decoration: underline;
}

.site-footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    margin-top: -1px;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.footer-links a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: underline;
}

        /*Back to Top button */
        .backToTopBtn {
            display: none; /* Hidden by default */
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 99;
            font-size: 18px;
            border: none;
            outline: none;
            background-color: #333;
			opacity: 0.5;
            color: white;
            cursor: pointer;
            padding: 15px;
            border-radius: 20%;
            transition: opacity 0.3s;
        }

        .backToTopBtn:hover {
            background-color: #555;
        }

/* Pagination styles */
.pagination {
    margin-top: 20px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.page-link {
    padding: 5px 10px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
}

.page-link:hover {
    background: #eee;
}

.page-link.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.page-dots {
    padding: 5px 10px;
}

/* Table header sorting styles */
th a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.table-info {
    margin-bottom: 10px;
    font-style: italic;
}

.no-results {
    text-align: center;
    padding: 20px;
    color: #666;
}

.search-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

/* Domain Details Page */
.domain-details-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.breadcrumbs {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumbs a {
    color: #0066cc;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.domain-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.domain-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
	text-align: center;
    margin-top: 1rem;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0066cc;
}

.appraisal-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: bold;
    background-color: #e6f7e6;
    color: #00aa00;
}

/* Info tooltip styling */
.info-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    line-height: 14px;
    text-align: center;
    border-radius: 50%;
    background-color: #009999;
    color: white;
    font-size: 10px;
    font-weight: bold;
	z-index: 1;
	margin-left: 2px;
	margin-bottom: -3px;
    cursor: pointer;
    position: absolute;
}

.tooltip {
    visibility: hidden;
    width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position above the icon */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
}

.info-icon:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: bold;
}

.status-badge.available {
    background-color: #e6f7e6;
    color: #00aa00;
}

.status-badge.sold {
    background-color: #ffe6e6;
    color: #cc0000;
}

.status-badge.pending {
    background-color: #fff8e6;
    color: #cc8800;
}

.category {
    background-color: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    font-size: 0.9rem;
}

.domain-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.stat {
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 5px;
}

.stat .label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.stat .value {
    font-weight: bold;
}

.similar-domains {
    margin-top: 3rem;
	border-top: 1px solid #eee;
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.domain-card {
    background-color: white;
    border-radius: 5px;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.domain-card h3 {
    margin-bottom: 0.5rem;
}

.domain-card .price {
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

/* Update 1 */

.domain-content {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.domain-details-column {
    flex: 2;
    min-width: 0; /* Fixes flexbox overflow issues */
}

.inquiry-form-column {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    background: #f1f1f1;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
}

.trust-indicators {
    margin: 15px 0;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 5px;
}

.trust-indicators p {
    margin: 5px 0;
    color: #555;
}

.trust-icon {
    color: #4CAF50;
    font-weight: bold;
    margin-right: 5px;
}
        .trust-list {
            margin-top: 15px;
        }
        
        .trust-list p {
			font-size: 0.8rem;
			color: #fff;
            margin-left: 10px;
        }
		
		.trust-list ul li {
			font-size: 0.8rem;
			color: #fff;
            margin: 5px;
        }
        
        .trust-list i {
            font-size: 22px;
            color: #37de3e;
            margin-right: 10px;
        }
		
        .trust-badges {
            display: flex;
            justify-content: space-around;
            margin-top: 10px;
            flex-wrap: wrap;
        }
        
        .trust-badge {
			font-size: 0.8rem;
			color: #fff;
            text-align: center;
            margin: 8px;
            flex: 1;
            min-width: 100px;
        }
        
        .trust-badge i {
            font-size: 22px;
            color: #37de3e;
            margin-bottom: 5px;
        }

        /* Popup Styles */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }
        
        .popup-content {
            background: white;
            border-radius: 8px;
            width: 80%;
            max-width: 700px;
            height: 90%;
            max-height: 700px;
            padding: 20px;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            overflow: hidden;
        }
        
        .close-popup {
            position: absolute;
            top: 10px;
            right: 25px;
            font-size: 28px;
            font-weight: bold;
            color: #0000FF;
            cursor: pointer;
            z-index: 100;
        }
        
        .close-popup:hover {
            color: #000;
        }
        
        #offer-iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
		

/* Responsive layout */
@media (max-width: 768px) {
    .domain-content {
        flex-direction: column;
    }
    
    .domain-details-column,
    .inquiry-form-column {
        width: 100%;
    }
    
    .contact-form {
        position: static;
    }
}

/* Existing domain stats styles */
.domain-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    background: #f1f1f1;
    padding: 1rem;
    border-radius: 5px;
}

.stat {
    background-color: white;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.stat .label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.stat .value {
    font-weight: bold;
}

/* Admin Styles */
.login-container {
    max-width: 400px;
    margin: 5rem auto;
    background-color: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.login-container h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.admin-container {
    max-width: 1200px;
    margin: 2rem auto;
    background-color: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.stats {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.stat-box {
    flex: 1;
    background-color: #f5f5f5;
    padding: 1.5rem;
    border-radius: 5px;
    text-align: center;
}

.stat-box h3 {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 2rem;
    font-weight: bold;
    color: #0066cc;
}

.admin-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.error {
    color: #cc0000;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background-color: #ffeeee;
    border-radius: 4px;
}

.success {
    color: #00aa00;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background-color: #eeffee;
    border-radius: 4px;
}

.faq-category {
        margin-bottom: 2rem;
    }
    .faq-item {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #eee;
    }
    .faq-item:last-child {
        border-bottom: none;
    }
	.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 5px;
    transition: background 0.3s;
	}
	.faq-question:hover {
    background: #e0e0e0;
	}
    .faq-question h3 {
        margin-bottom: 0.5rem;
        color: #333;
    }
    .faq-answer {
        color: #666;
        line-height: 1.6;
		padding: 10px;
		margin-top: 5px;
		border-left: 3px solid #007bff;
	}
	.toggle-icon {
    font-size: 1.2rem;
    font-weight: bold;
	}

/* Alerts styles */
.alerts-container {
	max-width: 1200px;
    background: #f8f9fa;
    padding: 10px 0;
    margin: 15px auto;
    overflow: hidden;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
	border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.alerts-scroll {
    display: flex;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

.alert-message {
    padding: 0 30px;
    font-weight: bold;
    color: #d32f2f;
    position: relative;
}

.alert-message:not(:last-child):after {
    content: "•";
    position: absolute;
    right: -5px;
    color: #999;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Enhanced Featured Sections - 3 Column Layout */
.featured-sections {
    margin: 2rem 0;
    padding: 0 2rem;
}

.featured-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-box {
    background: linear-gradient(145deg, #ffffff, #f8f9fa); /* Subtle gradient for depth */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.featured-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.featured-box h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #007bff;
    color: #1a3c6d; /* Darker blue for better contrast */
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.featured-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.featured-list li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed #e0e0e0;
    transition: background 0.2s ease;
}

.featured-list li:hover {
    background: #f1f5f9;
    border-radius: 4px;
}

.featured-list li::before {
    content: "◆"; /* Modern diamond bullet */
    color: #007bff;
    margin-right: 0.6rem;
}

.featured-list a {
    font-size: 1.3rem;
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.featured-list a:hover {
    color: #003087;
    padding-left: 0.3rem;
}

.featured-box .btn {
    display: inline-block;
    margin-top: 1rem;
    text-align: center;
    background-color: #007bff;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
}

.featured-box .btn:hover {
    background-color: #0055aa;
    transform: scale(1.05);
}

.featured-box .btn-small {
    display: inline-block;
    text-align: right;
    background-color: #e5e7e9;
    padding: 0.25rem 0.7rem;
    font-size: 0.7rem;
	color: #333;
    border-radius: 5px;
}

.featured-box .btn-small:hover {
	color: #333;
    background-color: #a3d9ff;
    transform: scale(1.05);
}

/* New style for button centering */
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

/* All Domains Table */

.alldomains-container {
    background-color: white;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.alldomains-container h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #007bff;
    color: #1a3c6d;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.all-domains {
    margin: 2rem 0;
}

.domains-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.domains-table th, 
.domains-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.domains-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.domains-table tr:hover {
    background-color: #f9f9f9;
}

/* Responsive */
@media (max-width: 768px) {
    .featured-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .featured-box {
        margin-bottom: 1rem;
    }
	
	.domains-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    .domains-table th,
    .domains-table td {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    .domains-table .btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #333;
    color: white;
    margin-top: 2rem;
}

/* Domain Details Page */
.domain-details-container {
    max-width: 1200px;
    margin: 2rem auto;
    background-color: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.domain-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.domain-header h1 {
    color: #0066cc;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: bold;
}

.status-badge.available {
    background-color: #e6f7e6;
    color: #00aa00;
}

.status-badge.sold {
    background-color: #ffe6e6;
    color: #cc0000;
}

.status-badge.pending {
    background-color: #fff8e6;
    color: #cc8800;
}

.domain-content {
    margin-top: 2rem;
}

.meta {
    margin-bottom: 1.5rem;
    color: #666;
}

.description {
    margin-bottom: 3rem;
}

.description h1 {
    color: #ff4900;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
	text-align: center;
}

@media (max-width: 768px) {
    .description h1 {
		font-size: 2rem;
    }
}

.description h2 {
    color: #193c57;
}

.description h3 {
    margin-bottom: 1rem;
    color: #333;
}

.inquiry-form {
    background: #193c57;
    padding: 1.5rem;
    border-radius: 15px;
    position: sticky;
    top: 20px;
    z-index: 10; /* Ensure it stays above other content */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Optional: subtle shadow */
}

@media (max-width: 768px) {
    .inquiry-form {
        position: static; /* Disable sticky on mobile */
    }
}

.inquiry-form h3 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.inquiry-form h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Admin Tables */
.domains-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.domains-table th,
.domains-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.domains-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.actions {
    white-space: nowrap;
}

.actions .btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.actions .delete {
    background-color: #cc0000;
}

.actions .delete:hover {
    background-color: #aa0000;
}

.admin-actions {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
}

/* Contact Page Styles */
.contact-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-container h1 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.contact-container p {
    margin-bottom: 2rem;
    color: #666;
}

.contact-form {
    margin-top: 2rem;
}

.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.alert.success {
    background-color: #e6f7e6;
    color: #00aa00;
    border: 1px solid #00aa00;
}

.alert.error {
    background-color: #ffe6e6;
    color: #cc0000;
    border: 1px solid #cc0000;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
}

/* Add to assets/css/style.css */
.form-group p.captcha-question {
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: #0066cc;
}

.security-check {
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
}

.security-check label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

