* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #2563eb;
            --secondary: #1e40af;
            --accent: #f59e0b;
            --light: #f8fafc;
            --dark: #1e293b;
            --gray: #64748b;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background-color: var(--light);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .btn {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background: #e69008;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
        }

        .btn-secondary {
            background: var(--primary);
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        .btn-secondary:hover {
            background: #1d4ed8;
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
        }

        section {
            padding: 80px 0;
        }

        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 0;
            flex-direction: row;
        }

       .logo {
            display: flex;
            align-items: center;
        }

        .logo img{
            height: auto;
            width: 450px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
            font-size: 1.05rem;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary);
        }
        
        /* Ensure parent <li> is relative */
.nav-links > li {
    position: relative;
}

/* Dropdown submenu */
.nav-links li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 999;
}

/* Show submenu on hover */
.nav-links li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Submenu links */
.sub-menu li a {
    display: block;
    padding: 10px 15px;
    color: #1e293b;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sub-menu li a:hover {
    background: #f59e0b;
    color: white;
}

/* Nested submenus */
.sub-menu .sub-menu {
    top: 0;
    left: 100%;
    transform: translateX(15px);
}

.sub-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile adjustments */
@media (max-width: 900px) {
    .nav-links li .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        border-radius: 0;
    }

    .sub-menu li a {
        padding-left: 30px;
    }
}

        .current_page_parent  a, .current-menu-item a {
            color: grey;
        }

        .header-contact {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 4px;
            margin-left: 20px;
        }


        .contact-item {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: var(--gray);
            transition: color 0.3s;
        }

        .contact-item:hover {
            color: var(--primary);
        }

        .contact-item i {
            margin-right: 8px;
            color: var(--primary);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }

       /* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 85vh;
  overflow: hidden;
  margin-top: -80px;
}

/* Individual Slide */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Overlay */
.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(37, 99, 235, 0.7); /* dark blue overlay */
  z-index: 1;
}

/* ===== TEXT CONTENT ===== */
.hero-content {
  position: relative;
  z-index: 3; /* must be higher than overlay */
  max-width: 650px;
  text-align: center;
  padding: 0 20px;
}

.hero-content h2 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  color: #ffffff !important; /* force white */
  max-width: 600px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* ===== NAV DOTS ===== */
.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dot.active {
  background: white;
  transform: scale(1.2);
}

/* ===== ARROWS ===== */
.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
}

.arrow {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-slider {
    height: 70vh;
    margin-top: -60px;
  }

  .hero-content h2 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}


        /* Benefits Section */
        .benefits {
            background-color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            color: var(--dark);
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 30px auto 0;
            font-size: 1.1rem;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            background: white;
            border-radius: 15px;
            padding: 35px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

       
        .benefit-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2rem;
        }

        .benefit-card h3 {
            margin-bottom: 15px;
            color: var(--dark);
        }

        
        /* News Section */
.news {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f9fafb, #fff);
}

/* Section Title */
.news .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.news .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
  position: relative;
}

.news .section-title h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #2563eb;
  margin: 12px auto 0;
  border-radius: 2px;
}

.news .section-title p {
  color: #64748b;
  font-size: 1.1rem;
}

/* CATEGORY HEADING */
.category-heading h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CATEGORY GRID */
.news-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.news-category {
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.news-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Category Icon */
.news-category .cat-icon {
  font-size: 36px;
  color: #2563eb;
  margin-bottom: 12px;
}

.news-category .cat-icon img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
}

/* Category Title */
.news-category h2,
.news-category h4,
.news-cat-title a {
  font-size: 1rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-category h2:hover a,
.news-category h4:hover a {
  color: #1e40af;
  text-decoration: underline;
}

.news-cat-title {
  margin-top: 20px;
  margin-bottom: 25px;
  text-align: center;
}

/* NEWS GRID */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 35px;
}

/* News Card */
.news-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Thumbnail */
.news-thumb {
  position: relative;
  overflow: hidden;
}
.news-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card:hover .news-thumb img {
  transform: scale(1.08);
}

/* Date Tag */
.news-date {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #2563eb;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Content */
.news-content {
  padding: 22px 25px;
}
.news-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
}
.news-content p {
  font-size: 0.97rem;
  color: #475569;
  margin-bottom: 18px;
  line-height: 1.6;
}

/* Read More Link */
.news-link {
  color: #2563eb;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}
.news-link i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}
.news-link:hover {
  color: #1e40af;
}
.news-link:hover i {
  transform: translateX(5px);
}

/* View All Button */
.view-all {
  text-align: center;
  margin-top: 40px;
}
.view-all .btn {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}
.view-all .btn:hover {
  background: #1e40af;
}

/* Responsive */
@media (max-width: 768px) {
  .news .section-title h2 {
    font-size: 2rem;
  }
  .news-content h3 {
    font-size: 1.1rem;
  }
  .news-content p {
    font-size: 0.9rem;
  }
  .news-category-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
  }
}

        /* CTA Section */

        
        .cta {
             background: linear-gradient(rgba(245,158,11,0.9), rgba(230,144,8,0.9)),
                url("<?php bloginfo('template_directory'); ?>/images/6.jpg") center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        

        .cta::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('6.jpg') no-repeat center center/cover;
            opacity: 0.1;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 35px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .phone-number {
            display: inline-block;
            background: white;
            color: var(--accent);
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1.4rem;
            font-weight: 700;
            margin: 20px 0;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .phone-number:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        /* Contact Section */
        
        
         

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 70px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 25px;
            font-size: 1.5rem;
        }

        .footer-section p {
            margin-bottom: 20px;
            opacity: 0.8;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
            display: flex;
            align-items: center;
        }

        .footer-links a i {
            margin-right: 10px;
            color: var(--accent);
        }

        .footer-links a:hover {
            opacity: 1;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 1rem;
            opacity: 0.7;
        }
        
       

        .google-reviews .section-title h2 {
            margin-bottom: 40px;
        }


        /* Responsive Design */
        @media (max-width: 1100px) {
            .header-contact {
                margin-left: 10px;
            }
            
            .nav-links li {
                margin-left: 20px;
            }
        }
        
        @media (max-width: 900px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .header-contact {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h2 {
                font-size: 2.3rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .hero-btns {
                flex-direction: column;
                gap: 15px;
            }
            
            .mobile-contact-info {
                display: block;
                padding: 15px 20px;
                border-top: 1px solid rgba(0,0,0,0.1);
            }
            
            .hero-slider {
                height: 70vh;
            }
        }

        @media (max-width: 600px) {
            section {
                padding: 60px 0;
            }
            
            .hero-slider {
                height: 60vh;
            }
            
            .hero h2, .cta h2 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .arrow {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }
        
        .mobile-contact-info {
            display: none;
            padding: 15px 0;
        }
        
        .mobile-contact-info .contact-item {
            margin: 8px 0;
            font-size: 1rem;
        }
        
        /* About Section */
        .about {
            background-color: #f8fafc;
        }
        
        .about-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            align-items: center;
        }
        
        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            height: 400px;
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .about-content h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 2rem;
        }
        
        .about-content p {
            margin-bottom: 20px;
            color: var(--gray);
        }
        
        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .stat-item {
            text-align: center;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .stat-item h4 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        /* Services Section */
        .services {
            background-color: white;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border-bottom: 4px solid var(--primary);
        }
        
        
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 1.8rem;
        }
        
        .service-card h3 {
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .service-card p {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .service-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }
        
        .service-link i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .service-link:hover i {
            transform: translateX(5px);
        }

        /* Send Us a Message Section */


/* Search Section (Light Version) */
.search-section {
  background: #f9fafc;
  padding: 60px 0;
  text-align: center;
}

.search-form {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  max-width: 600px;
  width: 100%;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.search-input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  outline: none;
  font-size: 1rem;
  color: #1e293b;
  background: transparent;
  font-family: 'Poppins', sans-serif;
}

.search-input::placeholder {
  color: #94a3b8;
}

.search-btn {
  background: #007bff; /* your blue tone */
  color: #fff;
  border: none;
  padding: 14px 22px;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 0 50px 50px 0;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: #0056b3;
}

.search-btn i {
  font-size: 1.1rem;
}

.search-form:focus-within {
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
  border-color: #cbd5e1;
}

@media (max-width: 768px) {
  .search-form {
    flex-direction: row;
    max-width: 90%;
  }

  .search-input {
    padding: 12px 15px;
  }

  .search-btn {
    padding: 12px 20px;
  }
}

.share-news-section {
  text-align: center;
  margin: 80px 0;
}

.share-news-section .submit-news-btn {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.share-news-section .submit-news-btn:hover {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.share-news-wrapper {
  background: linear-gradient(135deg, #f8fafc, #e0e7ff);
  text-align: center;
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.share-news-image {
  width: 120px;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.section-title p {
  color: #64748b;
  font-size: 16px;
  margin-bottom: 40px;
}

.news-highlights {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.news-highlights .highlight {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 25px 20px;
  width: 180px;
  transition: all 0.3s ease;
}

.news-highlights .highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.news-highlights i {
  font-size: 28px;
  color: #2563eb;
  margin-bottom: 10px;
}

.news-highlights p {
  font-size: 15px;
  color: #475569;
}

.share-news-section {
  text-align: center;
}

.submit-news-btn {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.submit-news-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
  transition: all 0.6s ease;
}

.submit-news-btn:hover::after {
  left: 100%;
}

.submit-news-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

@media (max-width: 768px) {
  .news-highlights {
    gap: 20px;
  }
  .news-highlights .highlight {
    width: 90%;
  }
  .section-title h2 {
    font-size: 1.6rem;
  }
}



/* ===== CONTACT SECTION ===== */

/* ===== CONTACT HERO (TOP BANNER) ===== */

.contact-hero {
    position: relative;
    height: 55vh;
    background: linear-gradient(rgba(30,64,175,0.75), rgba(37,99,235,0.75)),
                url("<?php bloginfo('template_directory'); ?>/images/contact-banner.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Smooth overlay effect */
.contact-hero::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 70%);
    animation: floatBg 6s ease-in-out infinite alternate;
}

@keyframes floatBg {
    from { transform: translateY(-10px); }
    to { transform: translateY(10px); }
}

/* Hero Content */
.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
    padding: 0 20px;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.contact-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* ===== SECTION TITLE (Below Hero) ===== */

.section-title {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.section-title h2 {
    font-size: 2.3rem;
    color: #1e293b;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Stylish underline */
.section-title h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    display: block;
    margin: 12px auto 0;
    border-radius: 3px;
}

/* Subtitle */
.section-title p {
    max-width: 650px;
    margin: 15px auto 0;
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
}

/* ===== SMALL RESPONSIVE FIXES ===== */

@media (max-width: 768px) {
    .contact-hero {
        height: 45vh;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-hero p {
        font-size: 0.95rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 40vh;
    }

    .contact-hero h1 {
        font-size: 1.8rem;
    }
}

.contact {
    background-color: #f8fafc;
    padding: 80px 0;
}

/* Container Layout */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px; /* reduced gap */
    align-items: stretch;
}

/* LEFT SIDE */
.left-side {
    display: flex;
    flex-direction: column;
    gap: 20px; /* reduced spacing */
}

/* CONTACT INFO CARD */
.contact-info {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
}

.contact-info h3 {
    color: #1e40af;
    margin-bottom: 20px;
    font-size: 22px;
    text-align: center;
    position: relative;
}

.contact-info h3::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #2563eb;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Contact Details */
.contact-details p {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    color: #334155;
}

.contact-details i {
    margin-right: 12px;
    color: #2563eb;
    width: 20px;
    font-size: 1rem;
    margin-top: 4px;
}

.contact-details a {
    color: inherit;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* ===== BOOKING FORM CARD ===== */
.booking-form-box {
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: 0.3s ease;
}

.booking-form-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.booking-form-box h3 {
    margin-bottom: 20px;
    color: #1e40af;
    font-size: 22px;
    text-align: center;
    position: relative;
}

.booking-form-box h3::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #2563eb;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* FORM FIELDS */
.booking-form-box input,
.booking-form-box select,
.booking-form-box textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 10px;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

/* Focus Effect */
.booking-form-box input:focus,
.booking-form-box textarea:focus,
.booking-form-box select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37,99,235,0.1);
    outline: none;
}

/* TEXTAREA SMALL */
.booking-form-box textarea {
    min-height: 80px;
    resize: none;
}

/* BUTTON */
.booking-form-box input[type="submit"],
.booking-form-box button {
    width: 100%;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

/* BUTTON HOVER */
.booking-form-box input[type="submit"]:hover,
.booking-form-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,99,235,0.3);
    background: linear-gradient(135deg, #1e40af, #2563eb);
}

/* ===== MAP ===== */
.map {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .map {
        min-height: 350px;
    }
}

@media (max-width: 600px) {
    .contact {
        padding: 60px 0;
    }

    .booking-form-box,
    .contact-info {
        padding: 20px;
    }
}
