/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-navy: #1a365d;
    --primary-gold: #ffd700;
    --dark-navy: #0f2a44;
    --light-navy: #2d5a87;
    --dark-gold: #e6c200;
    --light-gold: #fff3a0;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --success: var(--dark-gold);
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-navy), var(--light-navy));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.btn-secondary:hover {
    background: var(--primary-navy);
    color: var(--white);
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--primary-navy);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Animated Button */
.animated-btn {
    position: relative;
    overflow: hidden;
}

.animated-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.animated-btn:hover::before {
    left: 100%;
}

/* Navigation */

.navbar {
    background: rgba(26, 54, 93, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}


.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    
}
/* Hamburger styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    
}

.bar {
    height: 3px;
    width: 25px;
    background-color: #333;
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        background-color: var(--dark-navy);
        position: absolute;
        top: 70px;
        right: 20px;
        width: 200px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 12px 20px;
        text-align: left;
    }
}



/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

 .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
/*
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background: linear-gradient(135deg, var(--primary-navy), var(--light-navy));
}
*/
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 54, 93, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(50px);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(50px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(50px);
}

/* Animations */
.animate-fade-up {
    animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-gold);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-10px) rotate(45deg); }
    60% { transform: translateY(-5px) rotate(45deg); }
}

/* Sections */
.section-title {
    text-align: center;
    color: var(--primary-navy);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}

/* Countdown Section */
.countdown-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.counter-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-10px);
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 1.1rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-navy);
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

.about-images {
    position: relative;
    height: 500px;
}

.image-layer {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.layer-1 {
    top: 0;
    left: 0;
    width: 70%;
    height: 80%;
    z-index: 2;
}

.layer-2 {
    bottom: 0;
    right: 0;
    width: 60%;
    height: 70%;
    z-index: 1;
}

.image-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--primary-navy);
    color: var(--white);
}

.why-choose-section .section-title {
    color: var(--white);
}

.infographic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-10px);
}

.info-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.info-item h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.info-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* Services Carousel */
.services-carousel-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.service-card {
    min-width: 300px;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--medium-gray);
}



/* Blog Snippet Section */
.blog-snippet-section {
    padding: 80px 0;
}

.blog-slider {
    position: relative;
    overflow: hidden;
}

.blog-slide {
    display: none;
}

.blog-slide.active {
    display: block;
}

.blog-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    
}

.blog-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-category {
    background: var(--primary-gold);
    color: var(--primary-navy);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-content h3 {
    color: var(--primary-navy);
    margin: 1rem 0;
}

.blog-content p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--primary-gold);
}

.blog-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: var(--primary-navy);
}

/* CTA Band */
.cta-band {
    padding: 60px 0;
    background: var(--dark-navy);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary-navy), var(--light-navy));
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    color: var(--primary-navy);
    margin-bottom: 2rem;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.mvv-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mvv-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mvv-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.mvv-item h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
}

.comparison-table {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--primary-navy);
    color: var(--white);
    font-weight: 600;
}

.comparison-header > div {
    padding: 1.5rem;
    text-align: center;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #eee;
}

.comparison-row > div {
    padding: 1rem 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature {
    text-align: left !important;
    justify-content: flex-start !important;
    font-weight: 500;
}

.us-feature i {
    color: var(--success);
    font-size: 1.2rem;
}

.others-feature i {
    font-size: 1.2rem;
}

.others-feature .fa-times {
    color: var(--danger);
}

.others-feature .fa-question {
    color: var(--warning);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.team-member h3 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.footer {
  background-color: var(--dark-navy);
  color: var(--light-gold);
  padding: 50px 20px 30px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 15px;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-section h3,
.footer-section h4 {
  color: var(--primary-gold);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-section p {
  line-height: 1.6;
  color: var(--light-gold);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: var(--light-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-gold);
  text-decoration: underline;
}

.social-links {
  margin-top: 15px;
}

.social-links a {
  color: var(--light-gold);
  font-size: 20px;
  margin-right: 15px;
  display: inline-block;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-gold);
}

.contact-info p {
  margin-bottom: 12px;
  color: var(--light-gold);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: var(--primary-gold);
  min-width: 20px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid var(--light-gold);
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--medium-gray);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  .footer-section {
    min-width: 100%;
  }
}

/******************Services***************************/

/* ==== Services Grid Section ==== */
.services-grid-section {
  padding: 60px 20px;
  background-color: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-item {
  background-color: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 40px;
  color: var(--primary-gold);
  margin-bottom: 20px;
}

.service-item h3 {
  color: var(--primary-navy);
  margin-bottom: 15px;
  font-size: 20px;
}

.service-item p {
  color: var(--dark-gray);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}



.btn.btn-primary:hover {
  background-color: var(--light-navy);
}

/* Animated Button */
.animated-btn {
  position: relative;
  overflow: hidden;
}

.animated-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  
  transition: left 0.3s ease;
  z-index: 0;
}

.animated-btn:hover::after {
  left: 0;
}

.animated-btn span {
  position: relative;
  z-index: 1;
}

/* ==== Process Section ==== */
.process-section {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.process-section .section-title {
  font-size: 30px;
  color: var(--primary-gold);
  margin-bottom: 40px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.process-step {
  background-color: var(--light-navy);
  padding: 25px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-number {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-gold);
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.process-step h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--light-gold);
  font-size: 15px;
  line-height: 1.5;
}

/*************Blog Page********************/

.blog-hero {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.blog-hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--primary-gold);
}

.blog-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: var(--light-gold);
}

.blog-search .search-container {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blog-search input[type="text"] {
  flex: 1;
  padding: 12px 16px;
  border: none;
  font-size: 16px;
  outline: none;
}

.blog-search button {
  background-color: var(--primary-gold);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  color: var(--primary-navy);
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.blog-search button:hover {
  background-color: var(--dark-gold);
}

.blog-search i.fas {
  pointer-events: none;
}

/* Responsive */
@media (max-width: 600px) {
  .blog-hero h1 {
    font-size: 28px;
  }

  .blog-hero p {
    font-size: 16px;
  }

  .blog-search .search-container {
    flex-direction: column;
  }

  .blog-search input[type="text"],
  .blog-search button {
    width: 100%;
    border-radius: 0;
  }

  .blog-search button {
    border-top: 1px solid #ccc;
  }
}

.featured-blog {
  padding: 60px 20px;
  background-color: var(--light-gray);
}

.featured-post {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.featured-image {
  position: relative;
}

.featured-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.featured-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-gold);
  color: var(--primary-navy);
  padding: 6px 12px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
}

.featured-content .post-meta {
  font-size: 14px;
  color: var(--medium-gray);
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.featured-content h2 {
  color: var(--primary-navy);
  font-size: 26px;
  margin: 10px 0 15px;
}

.featured-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.post-author img {
  border-radius: 50%;
}

.author-info {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: var(--dark-gray);
}

.author-name {
  font-weight: bold;
  color: var(--primary-navy);
}



.btn.btn-primary:hover {
  background-color: var(--light-navy);
}

/* ==== Blog Grid Section ==== */
.blog-grid-section {
  padding: 60px 20px;
  background-color: var(--white);
}

.section-title {
  font-size: 30px;
  color: var(--primary-navy);
  text-align: center;
  margin-bottom: 30px;
}

.blog-filters {
  text-align: center;
  margin-bottom: 30px;
}

.filter-btn {
  background-color: transparent;
  border: 2px solid var(--primary-navy);
  color: var(--primary-navy);
  padding: 8px 16px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-navy);
  color: var(--white);
}



.blog-card {
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  background-color: var(--light-gray);
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  position: relative;
}

.blog-image img {
  width: 100%;
  display: block;
}

.blog-overlay {
  position: absolute;
 
 
}

.read-more-btn {
  background-color: var(--primary-gold);
  color: var(--primary-navy);
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 18px;
  color: var(--dark-navy);
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  color: var(--dark-gray);
  margin-bottom: 15px;
}

.post-meta {
  font-size: 12px;
  color: var(--medium-gray);
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-footer .author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.post-footer img {
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

.load-more-container {
  text-align: center;
  margin-top: 40px;
}

.btn.btn-secondary.load-more-btn {
  background-color: var(--dark-navy);
  color: var(--white);
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn.btn-secondary:hover {
  background-color: var(--primary-navy);
}

/* Responsive */
@media (max-width: 768px) {
  .featured-post {
    flex-direction: column;
  }
}

/*********************Contact Page***********************/

/* Section Layout */
.contact-section {
  padding: 60px 20px;
  background: var(--light-gray);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

/* Left Info Side */
.contact-info-side {
  flex: 1;
  min-width: 300px;
}

.contact-info-card {
  background: var(--primary-navy);
  color: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.contact-info-card h2 {
  color: var(--primary-gold);
  margin-bottom: 15px;
}

.contact-info-card .quote {
  font-style: italic;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-details .contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-icon {
  font-size: 22px;
  color: var(--primary-gold);
}

.contact-text h4 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  color: var(--white);
  margin-right: 12px;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-gold);
}

/* Right Form Side */
.contact-form-side {
  flex: 2;
  min-width: 320px;
}

.contact-form-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.contact-form-card h2 {
  color: var(--primary-navy);
  margin-bottom: 20px;
}

/* Form Styles */
.contact-form .form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 12px;
  border: 1px solid var(--medium-gray);
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-navy);
}

/* Checkbox */
.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
}

.checkbox-label input {
  display: none;
}

.checkbox-label .checkmark {
  width: 18px;
  height: 18px;
  background: var(--light-gray);
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  margin-right: 10px;
  position: relative;
}

.checkbox-label input:checked + .checkmark {
  background: var(--primary-gold);
  border-color: var(--dark-gold);
}

.checkbox-label input:checked + .checkmark::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 4px;
  height: 8px;
  border: solid var(--dark-navy);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Error Messages */
.error-message {
  font-size: 12px;
  color: var(--danger);
  margin-top: 4px;
  display: none;
}

/* Submit Button */
.submit-btn {
  background: var(--primary-navy);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: var(--dark-navy);
}

.btn-loader {
  width: 18px;
  height: 18px;
  border: 2px solid var(--white);
  border-top: 2px solid transparent;
  border-radius: 50%;
  margin-left: 10px;
  display: none;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
/* Modal Overlay */
.modal {
  display: none; /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 42, 68, 0.8); /* dark navy overlay */
  z-index: 1000;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease forwards;
}

/* Modal Box */
.modal-content {
  background: var(--white);
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: slideDown 0.4s ease forwards;
}

/* Modal Header */
.modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}

.modal-header i {
  font-size: 50px;
  color: var(--success);
  margin-bottom: 10px;
}

.modal-header h3 {
  color: var(--primary-navy);
  margin: 0;
}

/* Body */
.modal-body {
  color: var(--dark-gray);
  font-size: 15px;
  margin-bottom: 20px;
}

/* Footer */
.modal-footer {
  display: flex;
  justify-content: center;
}

.modal-footer .btn {
  background: var(--primary-navy);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.modal-footer .btn:hover {
  background: var(--dark-navy);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


/*************************Newsletter Page**************************/

/* Newsletter Section */
.newsletter-section {
  background: var(--light-gray);
  padding: 160px 20px;
}

.newsletter-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

/* Left Info */
.newsletter-info {
  flex: 1;
  min-width: 320px;
}

.newsletter-info h1 {
  color: var(--primary-navy);
  font-size: 28px;
  margin-bottom: 10px;
}

.newsletter-subtitle {
  font-size: 16px;
  color: var(--medium-gray);
  margin-bottom: 25px;
}

.newsletter-benefits {
  margin-bottom: 25px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-gray);
  margin-bottom: 10px;
}

.benefit-item i {
  color: var(--success);
}

.newsletter-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-navy);
}

.stat-label {
  font-size: 13px;
  color: var(--medium-gray);
}

/* Right Forms */
.newsletter-forms {
  flex: 1;
  min-width: 350px;
}

.form-container {
  background: var(--white);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  display: none;
}

.form-container.active {
  display: block;
}

.form-header h2 {
  color: var(--primary-navy);
  margin-bottom: 5px;
}

.form-header p {
  color: var(--medium-gray);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--dark-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px;
  border: 1px solid var(--medium-gray);
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-navy);
}

/* Checkbox */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
}

.checkbox-label input {
  display: none;
}

.checkbox-label .checkmark {
  width: 18px;
  height: 18px;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  margin-right: 10px;
  position: relative;
  background: var(--light-gray);
}

.checkbox-label input:checked + .checkmark {
  background: var(--primary-gold);
  border-color: var(--dark-gold);
}

.checkbox-label input:checked + .checkmark::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 4px;
  height: 8px;
  border: solid var(--dark-navy);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Error */
.error-message {
  font-size: 12px;
  color: var(--danger);
  margin-top: 3px;
  display: none;
}

/* Buttons */
.submit-btn {
  background: var(--primary-navy);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: var(--dark-navy);
}

.btn-secondary {
  background: var(--danger);
}

.btn-loader {
  width: 18px;
  height: 18px;
  border: 2px solid var(--white);
  border-top: 2px solid transparent;
  border-radius: 50%;
  margin-left: 10px;
  display: none;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-footer {
  margin-top: 15px;
  font-size: 14px;
}

.form-footer a {
  color: var(--primary-gold);
  text-decoration: none;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 42, 68, 0.8);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: var(--white);
  border-radius: 12px;
  max-width: 450px;
  width: 90%;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  animation: slideDown 0.3s ease;
}

.modal-header i {
  font-size: 45px;
  color: var(--success);
  margin-bottom: 10px;
}

.modal-header h3 {
  color: var(--primary-navy);
  margin: 0;
}

.modal-body {
  color: var(--dark-gray);
  margin: 15px 0;
}

.modal-footer button {
  background: var(--primary-navy);
  color: var(--white);
  padding: 8px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.modal-footer button:hover {
  background: var(--dark-navy);
}

@keyframes slideDown {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/********************Individual Blogs**************************/
.blog-container {
      max-width: 900px;
      margin: 30px auto;
      background: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .blog-featured {
      width: 100%;
      height: 500px;
      border-radius: 10px;
      margin-bottom: 25px;
    }

    .blog-content h2 {
      font-size: 1.8rem;
      margin: 20px 0 10px;
      color: var(--primary-navy);
    }

    .blog-content p {
      margin-bottom: 15px;
      font-size: 1.05rem;
    }

    /* Share Section */
    .share-section {
      margin: 30px 0;
      text-align: center;
    }

    .share-section h3 {
      margin-bottom: 10px;
    }

    .share-icons a {
      margin: 0 10px;
      font-size: 1.5rem;
      color: var(--primary-navy);
      transition: color 0.3s ease;
    }

    .share-icons a:hover {
      color: var(--dark-gold);
    }

    /* Comment Form */
    .comment-section {
      margin-top: 40px;
    }

    .comment-section h3 {
      margin-bottom: 15px;
    }

    .comment-form .form-group {
      margin-bottom: 15px;
    }

    .comment-form label {
      display: block;
      margin-bottom: 5px;
      font-weight: 600;
    }

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

    .comment-form button {
      padding: 12px 20px;
      border: none;
      background: var(--primary-navy);
      color: #fff;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .comment-form button:hover {
      background: var(--dark-gold);
    }

    /* Success Modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0; top: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: #fff;
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      max-width: 400px;
    }

    .modal-header i {
      font-size: 3rem;
      color: var(--dark-gold);
      margin-bottom: 10px;
    }

    .modal-footer button {
      margin-top: 15px;
      padding: 10px 20px;
      border: none;
      background: var(--primary-navy);
      color: #fff;
      border-radius: 6px;
      cursor: pointer;
    }

    .modal-footer button:hover {
      background: var(--dark-gold);
    }
