:root {
    --primary-color: #3CCBDA;
    --secondary-color: #3CCBDA;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --white-color: #ffffff;
    --text-color: #374151;

    /* Adid  */
      --adid-primary-color: #0272B9;
    --adid-primary-dark: #015a94;
    --adid-primary-light: #0892e8;
    --adid-accent-color: #F4650F;
    --adid-accent-dark: #d4540a;
    --adid-accent-light: #ff7a2b;
    --adid-white-color: #FFFFFF;
    --adid-black-color: #000000;
    --adid-gray-50: #f9fafb;
    --adid-gray-100: #f3f4f6;
    --adid-gray-200: #e5e7eb;
    --adid-gray-300: #d1d5db;
    --adid-gray-600: #4b5563;
    --adid-gray-700: #374151;
    --adid-gray-800: #1f2937;
    --adid-gray-900: #111827;
    --adid-font-main: 'Montserrat', -apple-system, sans-serif;
    --adid-font-display: 'Playfair Display', Georgia, serif;
    --adid-shadow-small: 0 2px 8px rgba(0, 0, 0, 0.08);
    --adid-shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.1);
    --adid-shadow-large: 0 8px 24px rgba(0, 0, 0, 0.15);
    --adid-shadow-xlarge: 0 12px 36px rgba(0, 0, 0, 0.2);
    --adid-transition-standard: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.logo-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.logo-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.logo-icon {
    width: 100px;
    height: 100px;
    background: var(--adid-black-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.logo-icon i {
    font-size: 50px;
    color: var(--white-color);
    transform: rotate(45deg);
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    50% {
        transform: rotate(45deg) translateY(-10px);
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    color: var(--adid-black-color);
    margin-bottom: 2rem;
}

.logo-text .text-small {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.logo-text .text-large {
    font-size: 28px;
    font-weight: bold;
}

.loading-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: var(--adid-black-color);
    border-radius: 50%;
    animation: loadingDots 1.4s infinite ease-in-out;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loadingDots {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* Top Bar */
.top-bar {
    background: white;
    padding: 0.5rem 0;
    color: black;
}

.top-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    font-size: 16px;
}

.top-links a {
    color: black;
    text-decoration: none;
    transition: opacity 0.3s ease;
}




/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon-nav {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
}

.logo-icon-nav i {
    font-size: 24px;
    color: var(--white-color);
    transform: rotate(45deg);
}

.logo-text-nav {
    display: flex;
    flex-direction: column;
}

.logo-text-nav .small {
    font-size: 10px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-text-nav .large {
    font-size: 18px;
    font-weight: bold;
    color: var(--dark-color);
}


.brand-logo {
    display: flex;
    flex-direction: column;
}

.brand-text-top {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: 2px;
}

.brand-text-bottom {
    font-size: 9px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Search Bar */
.search-bar {
    background: var(--white-color);
    padding: 1rem 0;
    display: none;
    border-bottom: 1px solid #e5e7eb;
    animation: slideDown 0.3s ease;
}

.search-bar.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-bar input {
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 181, 217, 0.1);
}

/* Hero Section */

/* Hero Slider */
:root {
  --primary-color: #00B5D9;
  --secondary-color: #0891b2;
  --dark-color: #1f2937;
  --light-color: #f9fafb;
  --white-color: #ffffff;
  --text-color: #374151;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 85vh;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Add overlay opacity on each slide */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* 0.4 opacity black overlay */
  z-index: 1;
}

.slide.active {
  opacity: 1;
}

/* Ensure content is above overlay */
.slide-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 600px;
  z-index: 5; /* higher than ::before overlay */
  color: var(--white-color);
}


.subtitle {
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.heading_sub_stitle {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.heading_sub_stitle span {
  color: var(--secondary-color);
}

.description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page_button_butn {
  display: flex;
  gap: 15px;
}

.page_button_btn {
  padding: 10px 20px;
  background: var(--primary-color);
  color: var(--white-color);
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: 0.3s;
  border: none;
}

.page_button_btn:hover {
  background: var(--secondary-color);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white-color);
  color: var(--white-color);
}

.btn-outline:hover {
  background: var(--white-color);
  color: var(--dark-color);
}

/* hero_section_thumbnails_main */
.hero_section_thumbnails_main {
  position: absolute;
  bottom: 50px;
  right: 50px;
  display: flex;
  gap: 15px;
  z-index: 10;
}

.hero_section_thumb__images {
  width: 80px;
  height: 80px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}

.hero_section_thumb__images.active,
.hero_section_thumb__images:hover {
  opacity: 1;
  border: 2px solid var(--primary-color);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/466685/pexels-photo-466685.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-hero {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 181, 217, 0.3);
}

.btn-hero:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
    color: var(--white-color);
}

.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-indicators button {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicators button.active,
.hero-indicators button:hover {
    background: var(--white-color);
    transform: scale(1.2);
}

/* Welcome Section */
.welcome-section {
    background: linear-gradient(to bottom, var(--white-color), var(--light-color));
    padding: 5rem 0;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.feature-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-img {
    position: relative;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.feature-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
}

.feature-card:hover .feature-img::before {
    background: rgba(0, 0, 0, 0.3);
}

.feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--white-color);
}

.feature-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-overlay i {
    transform: scale(1.2);
}

.feature-overlay h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0;
}

/* Interactive Maps Section */
.maps-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.maps-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/3184360/pexels-photo-3184360.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
    background-attachment: fixed;
}

.maps-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 145, 178, 0.85);
}

.maps-section .container {
    position: relative;
    z-index: 2;
}

.maps-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.btn-map {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-map:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Events Section */
.events-section {
    background: linear-gradient(135deg, #fce7f3 0%, var(--white-color) 50%, #cffafe 100%);
    padding: 5rem 0;
}

.carousel-control-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--dark-color);
}

.carousel-control-custom:hover {
    background: var(--white-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.event-card {
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.event-img {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.event-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.event-date {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    font-weight: 600;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.event-content {
    padding: 1.5rem;
}

.event-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.event-content p {
    color: var(--text-color);
    margin: 0;
}

/* Blog Section */
.blog-section {
    padding: 5rem 0;
}

.blog-card {
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.blog-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.blog-card.featured:hover {
    transform: translateY(-10px);
}

.blog-card.small:hover {
    transform: translateX(5px);
}

.blog-img {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.blog-content {
    padding: 2rem;
}

.blog-date {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.blog-content h3 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.blog-content p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--secondary-color);
    gap: 1rem;
}

.blog-img-small {
    height: 150px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.blog-content-small {
    padding: 1rem;
}

.blog-content-small h4 {
    font-size: 1rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content-small h4 {
    color: var(--primary-color);
}

.blog-content-small p {
    font-size: 0.875rem;
    color: var(--text-color);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Subscribe Section */
.subscribe-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.subscribe-section::before,
.subscribe-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(60px);
}

.subscribe-section::before {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -50px;
}

.subscribe-section::after {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
}

.subscribe-icon {
    font-size: 4rem;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.subscribe-form input {
    border-radius: 50px;
    border: none;
    padding: 0.75rem 1.5rem;
}

.subscribe-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.subscribe-form .btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: #9ca3af;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon-footer {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
}

.logo-icon-footer i {
    font-size: 24px;
    color: var(--white-color);
    transform: rotate(45deg);
}

.logo-text-footer {
    display: flex;
    flex-direction: column;
}

.logo-text-footer .small {
    font-size: 10px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-text-footer .large {
    font-size: 18px;
    font-weight: bold;
    color: var(--white-color);
}

.footer-heading {
    color: var(--white-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 14px;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-bottom a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

.footer-bottom p {
    color: #6b7280;
    font-size: 14px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
     background: black !important;
    color: var(--white-color) !important;
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 181, 217, 0.3);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 181, 217, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .blog-content h3 {
        font-size: 1.5rem;
    }

    .maps-card {
        padding: 2rem 1.5rem;
    }

    .carousel-control-custom {
        display: none;
    }

    .top-links {
        font-size: 11px;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 1rem;
        right: 1rem;
    }
}


/* ADID Home Page Design CSS Start  */


/* =============================================
   STICKY NAVBAR
   ============================================= */
.adid-navbar {
    background: var(--adid-white-color);
    padding: 1rem 0;
    box-shadow: var(--adid-shadow-small);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--adid-transition-standard);
}

.adid-navbar.adid-scrolled {
    box-shadow: var(--adid-shadow-medium);
    padding: 0.75rem 0;
}

.adid-navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--adid-black-color);
    font-weight: 700;
    transition: var(--adid-transition-standard);
    text-decoration: none;
}

.adid-navbar-brand:hover {
    color: var(--adid-primary-color);
    transform: translateY(-2px);
}

.adid-brand-icon {
    color: var(--adid-primary-color);
    stroke: var(--adid-primary-color);
    transition: var(--adid-transition-standard);
}

.adid-navbar-brand:hover .adid-brand-icon {
    stroke: var(--adid-accent-color);
}

.adid-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.adid-brand-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--adid-black-color);
}

.adid-brand-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--adid-gray-600);
    letter-spacing: 0.5px;
}

.adid-navbar-menu {
    gap: 2rem;
}

.adid-nav-link {
    color: var(--adid-black-color);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--adid-transition-standard);
}

.adid-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--adid-primary-color), var(--adid-accent-color));
    transition: width 0.3s ease;
}

.adid-nav-link:hover {
    color: var(--adid-primary-color);
}

.adid-nav-link:hover::after {
    width: 100%;
}

.adid-navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.adid-search-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--adid-gray-100);
    color: var(--adid-black-color);
    border: none;
    transition: var(--adid-transition-standard);
}

.adid-search-btn:hover {
    background: var(--adid-primary-color);
    color: var(--adid-white-color);
    transform: rotate(90deg);
}

.adid-search-btn svg {
    stroke: currentColor;
}

.adid-donate-btn {
    background: var(--adid-accent-color);
    color: var(--adid-white-color);
    padding: 0.625rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.5px;
    transition: var(--adid-transition-standard);
    border: 2px solid var(--adid-accent-color);
    text-decoration: none;
}

.adid-donate-btn:hover {
    background: var(--adid-accent-dark);
    border-color: var(--adid-accent-dark);
    color: var(--adid-white-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(244, 101, 15, 0.3);
}


/* =============================================
   HERO SECTION
   ============================================= */
.adid-hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.adid-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/adid-hero-img.webp');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.adid-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 114, 185, 0.85) 0%, rgba(244, 101, 15, 0.75) 100%);
    z-index: 2;
}

.adid-hero-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
}

.adid-hero-title {
    font-family: var(--adid-font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    color: var(--adid-white-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
}

.adid-hero-description {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--adid-white-color);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.8;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.adid-hero-btn {
    background: var(--adid-white-color);
    color: var(--adid-primary-color);
    padding: 1.125rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.5px;
    transition: var(--adid-transition-standard);
    border: 3px solid var(--adid-white-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: inline-block;
    text-decoration: none;
}

.adid-hero-btn:hover {
    background: transparent;
    color: var(--adid-white-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.adid-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.adid-scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid var(--adid-white-color);
    border-radius: 25px;
    position: relative;
    opacity: 0.9;
    animation: adid-scroll-bounce 2s infinite;
}

.adid-scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--adid-white-color);
    border-radius: 50%;
    animation: adid-scroll-dot 2s infinite;
}

@keyframes adid-scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes adid-scroll-dot {
    0% { top: 8px; opacity: 1; }
    100% { top: 32px; opacity: 0; }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.adid-about-section {
    padding: 6rem 0;
    background: var(--adid-white-color);
}

.adid-section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--adid-primary-color), var(--adid-accent-color));
    color: var(--adid-white-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.adid-section-title {
    font-family: var(--adid-font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--adid-black-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.adid-section-description {
    font-size: 1.125rem;
    color: var(--adid-gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.adid-about-btn {
    background: var(--adid-primary-color);
    color: var(--adid-white-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--adid-transition-standard);
    border: 2px solid var(--adid-primary-color);
    margin-top: 1rem;
    display: inline-block;
    text-decoration: none;
}

.adid-about-btn:hover {
    background: var(--adid-accent-color);
    border-color: var(--adid-accent-color);
    color: var(--adid-white-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(244, 101, 15, 0.3);
}


/* Updated campaign section styles with unique class names */
.adid-campaign-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.adid-campaign-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.adid-campaign-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.adid-campaign-slide.adid-campaign-active {
  opacity: 1;
}

.adid-campaign-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.adid-campaign-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(228, 0, 76, 0.388) 0%, rgba(44, 62, 80, 0.7) 100%);
}

.adid-campaign-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

.adid-campaign-title {
    color: white;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.adid-campaign-description {
    color: white;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin-bottom: 2rem;
  font-weight: 300;
}

.adid-campaign-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 3;
}

.adid-campaign-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.adid-campaign-dot.adid-campaign-dot-active {
  background-color: white;
  transform: scale(1.2);
}

.adid-campaign-dot:hover {
  background-color: white;
}

.adid-btn-light {
  background-color: white;
  color: var(--adid-primary-color);
  border: none;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.adid-btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}


/* =============================================
   SERVICES SECTION
   ============================================= */
.adid-services-section {
    padding: 6rem 0;
    background: var(--adid-gray-50);
}

.adid-services-header {
    margin-bottom: 4rem;
}

.adid-services-grid {
    display: flex;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.adid-service-card {
    background: var(--adid-white-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--adid-shadow-small);
    transition: var(--adid-transition-standard);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--adid-gray-200);
}

.adid-service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--adid-shadow-xlarge);
    border-color: var(--adid-primary-color);
}

.adid-service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.adid-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.adid-service-card:hover .adid-card-img {
    transform: scale(1.1);
}

.adid-service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 114, 185, 0.95), rgba(244, 101, 15, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.adid-service-card:hover .adid-service-overlay {
    opacity: 1;
}

.adid-service-icon {
    color: var(--adid-white-color);
    stroke: var(--adid-white-color);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.adid-service-body {
    padding: 2rem 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.adid-service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--adid-black-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.adid-service-text {
    font-size: 0.9375rem;
    color: var(--adid-gray-700);
    line-height: 1.7;
    flex-grow: 1;
}

/* =============================================
   SUBSCRIBE SECTION
   ============================================= */
.adid-subscribe-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--adid-accent-color) 0%, var(--adid-primary-color) 100%);
}

.adid-subscribe-box {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.adid-subscribe-title {
    font-family: var(--adid-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--adid-white-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 2px;
}

.adid-subscribe-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.adid-form-group {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--adid-white-color);
    border-radius: 50px;
    padding: 0.5rem 0.5rem 0.5rem 1.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.adid-form-icon {
    color: var(--adid-gray-600);
    stroke: var(--adid-gray-600);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.adid-form-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 0.875rem 0;
    background: transparent;
    color: var(--adid-black-color);
}

.adid-form-input::placeholder {
    color: var(--adid-gray-600);
}

.adid-form-submit {
    background: var(--adid-primary-color);
    color: var(--adid-white-color);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--adid-transition-standard);
    white-space: nowrap;
    flex-shrink: 0;
}

.adid-form-submit:hover {
    background: var(--adid-accent-color);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(244, 101, 15, 0.4);
}


/* =============================================
   RESPONSIVE MEDIA QUERIES
   ============================================= */
@media (max-width: 991px) {
    .adid-navbar-menu {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .adid-navbar-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }

    .adid-donate-btn {
        width: 100%;
        text-align: center;
    }



    .adid-hero-title {
        font-size: 3rem;
    }

    .adid-about-section,
    .adid-services-section,
    .adid-subscribe-section {
        padding: 4rem 0;
    }

    .adid-subscribe-box {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .adid-hero-section {
        min-height: 600px;
    }

    .adid-hero-title {
        font-size: 2.5rem;
    }

    .adid-service-image {
        height: 200px;
    }

    .adid-form-group {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .adid-form-input {
        width: 100%;
        padding: 0.875rem;
    }

    .adid-form-submit {
        width: 100%;
    }

    .adid-footer-social {
        justify-content: center;
    }

    .adid-footer-copyright {
        text-align: center;
    }

    .adid-topbar {
        font-size: 0.75rem;
    }

    .adid-topbar-link {
        font-size: 0.75rem;
    }
}

@media (max-width: 575px) {
    .adid-hero-title {
        font-size: 2rem;
    }

    .adid-section-title {
        font-size: 2rem;
    }

    .adid-subscribe-title {
        font-size: 1.75rem;
    }
}


/* ADID Home Page Design CSS End  */