/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
   
  }
  
  /* Loading screen container */
  .loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s;
  }
  
  /* Loading animation */
  .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Hide loader */
  .loader-container.hidden {
    opacity: 0;
    pointer-events: none;
  }
  
  /* Main content */
  .content {
    opacity: 0;
    transition: opacity 0.5s;
  }
  
  .content.visible {
    opacity: 1;
  }
  
  /* Navigation Styles */
  nav {
    background-color:#1d83ff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 0.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    width: 300px; 
    height: auto; 
    transition: transform 0.3s ease;
  }
  
  .logo img:hover {
    transform: scale(1.05);
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
  }
  
  .nav-links a:hover {
    color: goldenrod;
    background: linear-gradient(135deg, #00508f, #00294f);
    border-radius: 5px;
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
  }
  
  /* WhatsApp Button */
  .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  }
  
  .whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
  }
  
  /* Main container styles */
  .main {
    padding-top: 40px; /* Same as navbar height */
    width: 100%;
    min-height: 100vh;
    /* background-color:#1d83ff; */
  }
  
  /* Hero Section with Split Layout */
  .hero {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
  }
  
  .hero-split {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 100vh;
  }
  
  .hero-content {
    width: 63%;
    padding: 2rem 2rem 2rem 8rem;
    background-color: #1d83ff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .hero-image {
    width: 50%;
    background-image: url('images/backgroundimgfl.png');
    background-size: cover;
    background-position: center;
  }
  

  .hero-content span {
    font-size: 5.5rem;
    line-height: .6;
    font-weight: bold;
    color: white;
    display: block;
    margin-bottom: 0.2rem;
  }
  
  .hero-content h2 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: .5rem;
  }
  
  .hero-content h3 {
    font-size: 1.2rem;
    color: white;
    margin: 1.2rem .5;
    line-height: 1.1;
  }
  .hero-content h4 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
  }
 
  
  .hero-content p {
    font-size: 1.1rem;
    color: white;
    margin: 1rem 0;
    line-height: 1.4;
    max-width: 90%;
  }
  
  
  

  
  .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.8rem;
  }
  
  .service-tags span {
    background-color: #e9f0f7;
    color: #004080;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 1rem;
    border: 1px solid #d0e1f2;
  }
  
  /* Responsive Styles */
  @media screen and (max-width: 1024px) {
    
    .hero-split {
      flex-direction: column;
    }
  
    .hero-content{
      width: 100%;
    }
  
    .hero-content {
      padding: 2rem 1.5rem;
      order: 2; /* Content below image on mobile */
    }
  
    .hero-image {
      width: 100%;
      height: 50vh; /* Set a specific height for mobile */
      min-height: 800px; /* Ensure minimum height */
      order: 1; /* Image on top on mobile */
    }
  
    .hero-content h1 {
      font-size: 1.8rem;
    }
  
    .hero-content h2 {
      font-size: 1.4rem;
    }
  
    .hero-content h3 {
      font-size: 1.1rem;
    }
  
    .hero-content p, .hero-content ul li {
      font-size: 1rem;
    }
  
    .service-tags {
      gap: 0.5rem;
    }
  
    .service-tags span {
      font-size: 0.8rem;
      padding: 0.4rem 0.8rem;
    }
  
  
  }
  
  @media screen and (max-width: 768px) {
    .nav-links {
      position: fixed;
      right: -100%;
      top: 80px;
      flex-direction: column;
      background:#1d83ff;
      width: 100%;
      height: calc(100vh - 80px);
      text-align: center;
      transition: 0.3s ease;
      padding: 2rem 0;
    }
  
    .nav-links.active {
      right: 0;
    }
  
    .nav-links li {
      margin: 1.5rem 0;
    }
  
    .hamburger {
      display: block;
    }
  
    .logo img {
      width: 200px;
    }
  
    /* Adjust split layout for mobile */
    .hero-split {
      flex-direction: column;
    }
  
    .hero-content{
      width: 100%;
    }
  
    .hero-content {
      padding: 2rem 1.5rem;
      order: 2; /* Content below image on mobile */
    }
  
    .hero-image {
      width: 100%;
      height: 50vh; /* Set a specific height for mobile */
      min-height: 600px; /* Ensure minimum height */
      order: 1; /* Image on top on mobile */
    }
  
    .hero-content h1 {
      font-size: 1.8rem;
    }
  
    .hero-content h2 {
      font-size: 1.4rem;
    }
  
    .hero-content h3 {
      font-size: 1.1rem;
    }
  
    .hero-content p, .hero-content ul li {
      font-size: 1rem;
    }
  
    .service-tags {
      gap: 0.5rem;
    }
  
    .service-tags span {
      font-size: 0.8rem;
      padding: 0.4rem 0.8rem;
    }
  }
  @media screen and (max-width: 820px) {
    .nav-links {
      position: fixed;
      right: -100%;
      top: 80px;
      flex-direction: column;
      background: #1d83ff;
      width: 100%;
      height: calc(100vh - 80px);
      text-align: center;
      transition: 0.3s ease;
      padding: 2rem 0;
    }
  
    .nav-links.active {
      right: 0;
    }
  
    .nav-links li {
      margin: 1.5rem 0;
    }
  
    .hamburger {
      display: block;
    }
  
    .logo img {
      width: 200px;
    }
  
    /* Adjust split layout for mobile */
    .hero-split {
      flex-direction: column;
    }
  
    .hero-content{
      width: 100%;
    }
  
    .hero-content {
      padding: 2rem 1.5rem;
      order: 2; /* Content below image on mobile */
    }
  
    .hero-image {
      width: 100%;
      height: 50vh; /* Set a specific height for mobile */
      min-height: 650px; /* Ensure minimum height */
      order: 1; /* Image on top on mobile */
    }
  
    .hero-content h1 {
      font-size: 1.8rem;
    }
  
    .hero-content h2 {
      font-size: 1.4rem;
    }
  
    .hero-content h3 {
      font-size: 1.1rem;
    }
  
    .hero-content p, .hero-content ul li {
      font-size: 1rem;
    }
  
    .service-tags {
      gap: 0.5rem;
    }
  
    .service-tags span {
      font-size: 0.8rem;
      padding: 0.4rem 0.8rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    nav {
      height: 80px;
      padding: 0.5rem 1rem;
    }
    
  
    .main {
      padding-top: 80px;
    }
  
    .hero-content {
      padding: 1.5rem 1rem;
    }
    .hero-content span{
      font-size: 3rem;
    }
  
    .hero-image {
      height: 35vh; /* Slightly smaller on very small screens */
      min-height: 250px;
    }
  
    .hero-content h1 {
      font-size: 1.6rem;
    }
    .service-tags span {
      font-size: 0.8rem;
      padding: 0.4rem 0.8rem;
    }
  }

  /* CTA Button Styles */
 
/* CTA Button Styles - Keeping original desktop size */
.cta-button {
  display: inline-block;
  background: white;
 
  width:245px;
  color: #004080;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.8rem 2rem ;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 31, 63, 0.3);
  position: relative;
  overflow: hidden;
  margin: 0.5rem 0 1rem;
}

.cta-button: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: all 0.5s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 31, 63, 0.4);
  background: linear-gradient(135deg, #00508f, #00294f);
  color: goldenrod;
}

.cta-button:hover:before {
  left: 100%;
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 3px 6px rgba(0, 31, 63, 0.3);
}
  /* Responsive adjustments for the button */
  @media screen and (max-width: 768px) {
    .cta-button {
      font-size: 1rem;
      padding: 0.7rem 1.5rem;
      margin-top: 1.5rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    .cta-button {
      font-size: 0.9rem;
      padding: 0.6rem 1.2rem;
      margin-top: 1.2rem;
      width: 100%;
      text-align: center;
    }
  }


  section#services {
    padding: 60px 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

h1:after {
    content:'';
    position: absolute;
    width: 80px;
    height: 3px;
    background: #4a90e2;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Slider Container */
.slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    margin-bottom: 70px;
    background-color: white;
}

/* Slides Wrapper */
.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 500px;
}

/* Individual Slide */
.slide {
    min-width: 100%;
    background-color: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.slide h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 600;
}

.slide p {
    font-size: 18px;
    line-height: 1.7;
    color: #5d6778;
    margin-bottom: 25px;
    max-width: 800px;
}

.slide-image {
    width: 90%;
    max-width: 700px;
    height: 250px;
    margin: 0 auto 30px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.slide-image:hover {
    transform: scale(1.02);
}

/* Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.prev-btn, .next-btn {
    background-color: rgba(74, 144, 226, 0.85);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(74, 144, 226, 1);
    transform: scale(1.1);
}

/* Dots Navigation */
.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #d1d9e6;
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: #4a90e2;
    transform: scale(1.2);
}











/* Slide background colors */
.slide:nth-child(1) { background-color: #f8f9ff; }
.slide:nth-child(2) { background-color: #f5faff; }
.slide:nth-child(3) { background-color: #fff9f5; }
.slide:nth-child(4) { background-color: #f5fff8; }

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 36px;
    }
    
    .slides {
        height: 550px;
    }
    
    .slide {
        padding: 40px 20px;
    }
    
    .slide h2 {
        font-size: 24px;
    }
    
    .slide p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .slides {
        height: 600px;
    }
    
    .slide-image {
        height: 180px;
    }
    

    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 30px;
    }
    
    .slides {
        height: 650px;
    }
    

}

/* Explore Services Section Styling */
.container-service {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
    background-color: #f5f7fa;
    border-radius: 10px;
}

.container-service h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #002e5d;
    font-size: 32px;
    position: relative;
}

.container-service h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #004080, #001F3F);
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 31, 63, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 31, 63, 0.2);
}

.service h3 {
    padding: 20px;
    margin: 0;
    color: #fff;
    background: linear-gradient(135deg, #004080, #001F3F);
    font-size: 18px;
    text-align: center;
}

.content-service {
    padding: 20px;
}

.content-service ul {
    padding-left: 20px;
    margin: 0;
}

.content-service li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
    line-height: 1.5;
    color: #445566;
}

.content-service li:before {
    content: "•";
    color: #004080;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Add a CTA to each service card */
.service .service-cta {
    text-align: center;
    padding-bottom: 20px;
}

.service-cta a {
    display: inline-block;
    background: linear-gradient(135deg, #004080, #001F3F);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 3px 6px rgba(0, 31, 63, 0.2);
}

.service-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 31, 63, 0.3);
    color: goldenrod;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-list {
        grid-template-columns: 1fr;
    }
    
    .container-service h2 {
        font-size: 28px;
    }
    
    .service h3 {
        font-size: 16px;
    }
}

/* General Styling */
/* About Section Styling */
#about {
  padding: 40px 0;
  background-color: #f8faff;
  position: relative;
  overflow: hidden;
}

#about::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(29, 131, 255, 0.1) 0%, rgba(29, 131, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  color:#1667c7;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}



/* About Section Layout */
.about-text {
  
  align-items: center;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(29, 131, 255, 0.1);
  padding: 0;
  overflow: hidden;
}

/* Content Styling */
.about-content {
  padding: 40px;
}

.tagline h3 {
  color: #333;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 25px;
  color: #1667c7;
  border-left: 4px solid #1d83ff;
  padding-left: 15px;
}

.info-section {
  margin-bottom: 25px;
}

.info-section h4 {
  color: #1667c7;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.info-section h4 i {
  margin-right: 10px;
  color: #1667c7;
}

.info-section p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Benefits List */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: #555;
  font-size: 16px;
}

.check-icon {
  position: absolute;
  left: 0;
  color: #1d83ff;
  font-weight: bold;
  font-size: 18px;
}

/* CTA Section */
.contact-cta-btn {
  background-color: #f0f7ff;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 4px solid #1d83ff;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.contact-cta-btn p {
  margin: 0;
  font-weight: 500;
  color: #333;
}

.contact-cta-btn i {
  color: #1d83ff;
  margin-right: 8px;
}
.cta-button-btn {
  display: inline-block;
  background-color: #1d83ff; /* Primary blue from your theme */
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border: 2px solid #1d83ff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button-btn:hover {
  background-color: #1667c7; /* Darker shade for hover */
  border-color: #1667c7;
  transform: translateY(-3px); /* Slight lift effect */
  box-shadow: 0 4px 12px rgba(29, 131, 255, 0.3); /* Subtle shadow */
}




.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: white;
  color: #1d83ff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 2;
}

.experience-badge .years {
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.experience-badge .text {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-text {
      grid-template-columns: 1fr;
  }
  
  .about-image {
      order: -1;
      min-height: 350px;
  }
  
  .section-title h2 {
      font-size: 36px;
  }
  
  .tagline h3 {
      font-size: 20px;
  }
}

@media (max-width: 768px) {
  #about {
      padding: 60px 0;
  }
  
  .section-title {
      margin-bottom: 30px;
  }
  
  .section-title h2 {
      font-size: 32px;
  }
  
  .about-content {
      padding: 30px;
  }
  
  .contact-cta {
      flex-direction: column;
      align-items: flex-start;
  }
  
  .cta-button {
      margin-left: 0;
      margin-top: 10px;
  }
  
  .experience-badge {
      bottom: 20px;
      right: 20px;
      padding: 10px;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
      font-size: 28px;
  }
  
  .about-content {
      padding: 25px 20px;
  }
  
  .tagline h3 {
      font-size: 18px;
      padding-left: 10px;
  }
  
  .info-section h4 {
      font-size: 18px;
  }
  
  
  
  .experience-badge {
      padding: 8px;
      bottom: 15px;
      right: 15px;
  }
  
  .experience-badge .years {
      font-size: 22px;
  }
  
  .experience-badge .text {
      font-size: 12px;
  }
}
#services h1, h2 {
  color: #1667c7;
  text-align: center;
  margin-bottom: 40px;
}
h1{
  font-size: 2.5rem;
}
h4{
  font-size: 1.3rem;
  line-height: 1.6;
  color: #445566;
  font-weight: 500;
  margin: 6px 0 10px;
}
h2 {
  font-size: 1.8rem;
  padding-bottom: 10px;
  border-bottom: 2px solid #1d83ff;
  margin-top: 60px;
  display: inline-block;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  
}

.service-box {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(29, 131, 255, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-top: 5px solid #1d83ff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(29, 131, 255, 0.2);
}

.service-icon {
  font-size: 7rem;
  color: #1d83ff;
  margin-bottom: 15px;
  text-align: center;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 10px;
}

.service-box p {
  color: black;
  flex-grow: 1;
}

.download-btn {
  display: inline-block;
  background-color: #1d83ff;
  color: white;
  padding: 8px 15px;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 15px;
  transition: background-color 0.3s;
  align-self: flex-start;
}

.download-btn:hover {
  background-color: #1667c7;
}

@media (max-width: 768px) {
  .service-grid {
      grid-template-columns: 1fr;
  }
}
/* Blogs Section */

#blogs {
  padding: 60px 0;
  background-color: #f8faff;
}

.blog-main-heading {
  text-align: center;
  font-size: 42px;
  color: #1667c7;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}
.m2-main-heading{
  color: #1d83ff;
  font-size: 50px;
}

#blogs h2 {
  text-align: center;
  font-size: 42px;
  color: #1667c7;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}

#blogs h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 60px;
  height: 3px;
  background: #1d83ff;
  transform: translateX(-50%);
}

/* Changed to column layout */
.container-blog {
  max-width: 1200px; /* Narrower container for single column */
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Blog Post Styling */
.blog-post {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  width: 100%;
}

.blog-post:hover {
  transform: translateY(-8px);
}

.blog-header {
  position: relative;
  height: 500px; /* Increased height for better visibility */
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  color: white;
}

.blog-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.m2-main-heading {
  font-size: 32px; /* Increased size for better visibility */
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.post-date {
  font-size: 18px; /* Slightly larger */
  display: block;
  margin-bottom: 15px;
  opacity: 0.9;
}

.read-more {
  display: inline-block;
  background-color: #1d83ff;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.read-more:hover {
  background-color: #1667c7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 131, 255, 0.3);
}

/* Blog Content (Hidden by Default) */
.blog-content {
  padding: 40px;
  background-color: white;
  color: #555;
  line-height: 1.7;
}

.blog-content.hidden {
  display: none;
}

.blog-content h4.sub-heading {
  color: #1667c7;
  font-size: 22px;
  font-weight: 600;
  margin: 20px 0 15px;
}

.blog-content p {
  font-size: 18px;
  margin-bottom: 15px;
}

.blog-content ul, .blog-content ol {
  padding-left: 20px;
  margin-bottom: 15px;
}

.blog-content li {
  margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .container-blog {
    gap: 40px; /* Slightly reduced spacing on smaller screens */
  }
  #blogs h2 {
    font-size: 36px;
  }
  
  .m2-main-heading {
    font-size: 24px;
  }
  
  .blog-header {
    height: 350px;
  }

}

@media (max-width: 576px) {
  .container-blog {
    gap: 30px; /* Further reduced spacing on mobile */
  }
  #blogs h2 {
    font-size: 32px;
  }
  
  .m2-main-heading {
    font-size: 22px;
  }
  
  .blog-header {
    height: 250px;
  }
  
  .read-more {
    padding: 8px 15px;
    font-size: 14px;
  }
}
/* Base Styles */
#contact {
  background-image: url('images/img7.jpg');
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  min-height: 100vh;
  text-align: center;
  padding-top: 60px;
}

.letsconnect {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #1d83ff;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: transparent;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1200px;
  gap: 30px;
}

.bluebox {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 380px;
  color: white;
  background-color: #1d83ff;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(29, 131, 255, 0.2);
  transition: all 0.3s ease;
}

.bluebox:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(29, 131, 255, 0.3);
}

.map-container {
  flex: 1;
  min-height: 450px;
  min-width: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.normal {
  font-weight: normal;
  color: white;
  font-size: 1.5rem;
  font-weight: 100;
  margin-top: 20px;
  opacity: 0.8;
}

.bold {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.email, .phoneNumber {
  font-size: 1.3rem;
  margin-bottom: 15px;
}


.footer {
  background-color: #f8f9fa;
  padding: 20px 10px; /* Reduced padding for smaller screens */
  text-align: center;
  margin-top: 40px;
  border-radius: 10px;
  width: 100%; /* Ensure full width */
  box-sizing: border-box; /* Include padding in width calculation */
}


.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  color: #2c2e30;
  font-size: 24px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-5px);
  color: #202328;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .letsconnect {
    font-size: 3.5rem;
  }

  .contact-content {
    flex-direction: column;
    align-items: center;
  }

  .bluebox, .map-container {
    min-width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .letsconnect {
    font-size: 3rem;
  }

  .bluebox, .map-container {
    padding: 30px;
  }

  .normal, .bold, .email, .phoneNumber {
    font-size: 1.2rem;
  }
  .footer {
    padding: 15px 5px; /* Further reduced padding */
    font-size: 0.9rem; /* Adjust font size for readability */
  }
}

@media (max-width: 480px) {
  .letsconnect {
    font-size: 2.5rem;
  }

  .bluebox, .map-container {
    padding: 20px;
  }

  .normal, .bold, .email, .phoneNumber {
    font-size: 1rem;
  }
}
