 body {
   font-family: 'Arial', sans-serif;

 }

 /* Navbar */
 .navbar {
   background: #fff;
 }

 .navbar-nav .nav-link {
   margin: 0 10px;
   color: #000000;
 }
/* Submenu Style */
.navbar .dropdown-menu {
  min-width: 180px;
  padding: 10px 0;
  border-radius: 10px;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 0;
}

.navbar .dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown-item {
  font-weight: 500;
  color: #113349;
  padding: 10px 20px;
  transition: 0.2s;
}

.navbar .dropdown-item:hover {
  background: #E1C635;
  color: #113349;
}

/* Disable hover dropdown on mobile (for better tap experience) */
@media (max-width: 991px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}
/* ---------- Resources dropdown (desktop hover + mobile click) ---------- */

/* Base dropdown style */
.navbar .dropdown-menu {
  min-width: 200px;
  padding: 8px 0;
  border-radius: 10px;
  border: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transform-origin: top center;
  transform: translateY(-6px);
  opacity: 0;
  visibility: hidden;
  transition: transform 220ms ease, opacity 220ms ease, visibility 220ms;
  margin-top: 6px;
  z-index: 2000;
}

/* Show on hover for desktop */
@media (hover: hover) and (pointer: fine) {
  .navbar .dropdown:hover > .dropdown-menu,
  .navbar .dropdown.show > .dropdown-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}

/* Ensure Bootstrap's "show" state always displays the menu (important for mobile) */
.navbar .dropdown.show > .dropdown-menu {
  display: block; /* bootstrap normally toggles display; make sure it's visible */
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* Dropdown items */
.navbar .dropdown-item {
  font-weight: 600;
  color: #113349;
  padding: 10px 18px;
  transition: background 160ms, color 160ms;
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: #E1C635;
  color: #113349;
}

/* Prevent hover behavior on smaller/touch devices Ã¢â‚¬â€ rely on Bootstrap click/tap */
@media (max-width: 991.98px) {
  .navbar .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  }
  /* Let Bootstrap control visibility via `.show` Ã¢â‚¬â€ do not block it */
  .navbar .dropdown:hover > .dropdown-menu {
    /* no-op on mobile Ã¢â‚¬â€ avoids accidental hover interactions */
    transform: none;
    opacity: 1;
    visibility: visible;
  }
}

/* Ensure dropdown sits above the collapsed mobile navbar overlay */
.navbar .dropdown-menu {
  position: absolute;
}

/* Optional: make caret/toggle pointer slightly larger on touch */
.navbar .dropdown-toggle::after {
  margin-left: .35rem;
}

 /* Hero Section */
 .hero {
   padding: 70px 0;
   background: #fdfdfd;
 }

 .hero h3 {
   font-weight: 700;
   margin-bottom: 20px;
 }

 .hero p {
   font-size: 16px;
   margin-bottom: 20px;
 }

 .btn-primary {
   background: #40ACAF;
   border: none;
   padding: 12px 25px;
   font-weight: 600;
 }

 /* Features */
 .features {
   background: #00a896;
   color: #fff;
   padding: 40px 0;
 }

 .features .col {
   text-align: center;
   font-weight: 600;
 }

 /* Process */
 .process {
   padding: 60px 0;
 }

 .process h3 {
   font-weight: 700;
   margin-bottom: 10px;
 }

 .process p {
   margin-bottom: 40px;
 }

 .process-step img {
   width: 120px;
   margin-bottom: 20px;
 }

 /* Buddies */
 .buddies {
   background: #f2c94c;
   padding: 60px 0;
   text-align: center;
   position: relative;
 }

 .certified-img {
   max-width: 120px;
   /* size */
   position: absolute;
   top: -65px;
   /* heading ke upar adjust */
   left: 50%;
   transform: translateX(-50%) rotate(-25deg);
   /* center + tilt */
   z-index: 2;
 }


 .buddies img {
   /* width: 110px; */
   height: 110px;
   border-radius: 50%;
   margin: 10px;
   object-fit: cover;
 }

 /* Topics */
 .topics {
   padding: 60px 0;
   text-align: center;
 }

 .topics .btn {
   margin: 8px;
   background: #f5f5f5;
   border-radius: 20px;
   padding: 10px 20px;
   font-weight: 500;
 }

 /* Testimonial */
 .testimonial {
   background: #e6f7f7;
   padding: 60px 0;
   text-align: center;
 }

 .testimonial p {
   font-size: 16px;
   font-style: italic;
 }

 /* Join Section */
 .join {
   background: url(../img/join-bg.png);

   padding: 60px 0;
   text-align: center;
 }

 .btn-warning {
   background: #E1C635;
   border: none;


 }

 /* Blogs */
 .blogs {
   padding: 60px 0;
 }

 .blogs h3 {
   text-align: center;
   margin-bottom: 40px;
 }

 .blogs img {
   width: 100%;
   border-radius: 8px;
 }

 .blog-card img {
   width: 100%;
   max-width: 200px;
   /* image chhoti ho gayi */
   height: auto;
   border-radius: 12px;
   /* rounded corners like screenshot */
   margin-bottom: 10px;
 }

 .blog-card p {
   font-size: 16px;
   font-weight: 500;
   margin: 0;
   color: #333;
 }


 /* Footer */
 footer {
   background: #fff;
   padding: 50px 0;
   border-top: 1px solid #ddd;
   font-size: 14px;
 }

 footer h6 {
   font-weight: 700;
   margin-bottom: 15px;
 }

 .social-icons a {
   margin: 0 8px;
   font-size: 18px;
   color: #333;
 }

 .disclaimer {
   font-size: 12px;
   margin-top: 20px;
   color: #666;
 }

 /* Sidebar Container */
 
 
 
 
 /* Sidebar Container
 .social-sidebar.right-sidebar {
   text-align: center;
   position: relative;
   top: 30%;
   right: 0;
   background: #c7ebee;
 
   padding: 10px 20%;
   border-radius: 8px 0 0 8px;
   display: flex;
   flex-direction: unset;
   align-items: center;
   gap: 12px;
   z-index: 9999;
 }
  */
 .social-sidebar.right-sidebar {
position: relative; 
   /* top: 50%; */
       margin-top: 33px;
   right: 0;
   background: #c7ebee;
   /* same stripe background */
   padding: 10px 5px;
   border-radius: 8px 0 0 8px;
   display: flex;
   align-items: center;
   gap: 12px;
   z-index: 9999;
   flex-direction: row;
 }

 /* Vertical Text */
 .social-sidebar .follow-text {
   writing-mode: vertical-rl;
   transform: rotate(180deg);
   font-size: 14px;
   font-weight: bold;
   margin: 0;
   color: #000;
 }

 /* Social Links */
 .social-sidebar a {
   text-decoration: none;
 }

 .social-sidebar i {
   width: 40px;
   height: 40px;
   font-size: 18px;
   border-radius: 50%;
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 /* Specific Brand Colors */
 .social-sidebar .linkedin {
   background: #0077b5;
 }

 .social-sidebar .youtube {
   background: #ff0000;
 }

 .social-sidebar .twitter {
   background: #000;
 }

 .social-sidebar .instagram {
   background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
 }

 .social-sidebar .facebook {
   background: #1877f2;
 }


 /* right hand side css row-1 */
 .video-section {
   position: relative;
   text-align: center;
 }

 /* Desktop frame */
 .desktop-frame {
   position: relative;
   display: inline-block;
   max-width: 400px;
 }

 /* Background image inside desktop screen */
 .desktop-screen {
   position: absolute;
   top: 10%;
   left: 8%;
   width: 84%;
   height: 70%;
   background: url("assets/img/video-bg.jpg") no-repeat center center/cover;
   border-radius: 6px;
   overflow: hidden;
 }

 /* Play button */
 .play-btn {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   background: red;
   color: #fff;
   font-size: 2rem;
   width: 70px;
   height: 70px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   z-index: 5;
 }

 .play-btn:hover {
   background: #0097a7;
 }

 /* Boy + Plant positioning */
 .boy {
   position: absolute;
   bottom: 0;
   right: -139px;
   width: 180px;
   z-index: 3;
 }

 .plant {
   position: absolute;
   bottom: 0;
   right: -135px;
   width: 70px;
   z-index: 2;
 }

 /* Features section */
 /* Features section */
 .features {
   background: #40ACAF;
   color: #fff;
   padding: 30px 20px;
   border-radius: 20px 20px 0 0;
   margin-top: -50px;
   position: relative;
   z-index: 1;
   display: flex;
   justify-content: space-around;
   align-items: center;
   flex-wrap: wrap;
 }

 .feature-box {
   flex: 1;
   min-width: 180px;
   margin: 10px;
 }

 .feature-icon {
   width: 50px;
   height: 50px;
   object-fit: contain;
   margin-bottom: 8px;
 }

 .features p {
   font-size: 15px;
   white-space: nowrap;
   /* ek line me text rakhega */
 }

 /* row-2 calender css */
 .calendar-card {
   border-radius: 12px;
   background: #F5F5F5;
   padding: 25px;
   box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
 }

 .btn-session {
   background: #40ACAF;
   color: #fff;
   /* border-radius: 40px; */
   /* padding: 12px 30px; */
   font-weight: bold;
   border: none;
   display: block;
   margin: -50px auto 25px auto;
   font-size: 16px;
 }

 .calendar-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 15px;
 }

 .calendar-nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin: 15px 0;
 }

 .calendar-nav button {
   border: none;
   background: none;
   font-size: 20px;
   cursor: pointer;
   color: #333;
 }

 .calendar-table {
   width: 100%;
   text-align: center;
   margin-bottom: 20px;
 }

 .calendar-table th {
   font-size: 13px;
   font-weight: 600;
   padding: 6px;
   color: #4d4d4d;
 }

 .calendar-table td {
   width: 42px;
   height: 42px;
   text-align: center;
   vertical-align: middle;
   border-radius: 6px;
   cursor: pointer;
   font-size: 14px;
 }

 .calendar-table td:hover {
   background: #e0f7f8;
 }

 .calendar-table td.active {
   background: #fbc02d;
   color: #fff;
   font-weight: bold;
 }

 .time-slots {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 10px;
 }

 .time-slots button {
   border: 1px solid #ccc;
   background: #fff;
   padding: 8px 0;
   border-radius: 5px;
   font-size: 14px;
   cursor: pointer;
   transition: all 0.3s;
 }

 .time-slots button:hover {
   border-color: #1bb1b7;
   color: #1bb1b7;
 }

 .footer-text {
   text-align: center;
   margin-top: 25px;
   font-size: 14px;
 }

 .footer-text a {
   color: #1bb1b7;
   font-weight: bold;
   text-decoration: none;
 }

 /* row 4 start  */
 /* Section */
 .talk-section {
   padding: 60px 20px;
   text-align: center;
 }

 .talk-section h3 {
   font-size: 26px;
   font-weight: bold;
   margin-bottom: 12px;
 }

 .talk-section p {
   color: #555;
   max-width: 650px;
   margin: 0 auto 40px;
   font-size: 15px;
   line-height: 1.5;
 }

 /* Grid */
 .talk-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 25px;
   justify-items: center;
 }

 /* Card */
 .talk-card {
   background: #F0F0F0;
   border-radius: 10px;
   padding: 25px 21px 9px 15px;
   display: flex;
   align-items: center;
   gap: 15px;
   width: 100%;
   max-width: 230px;
   box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
   /* thoda bahar nikla effect */
   transition: 0.3s ease;
   cursor: pointer;
 }

 .talk-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
 }

 /* Icon */
 .talk-card .icon {
   background: #E1C635;
   padding: 14px;
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   min-width: 50px;
   min-height: 50px;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
   transform: translate(8px, -8px);
 }

 .talk-card .icon img {
   width: 26px;
   /* adjust size */
   height: 26px;
   object-fit: contain;
 }

 .talk-card .icon {
   background: #f2c94c;
   padding: 12px;
   border-radius: 6px;
   font-size: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   min-width: 42px;
   min-height: 42px;
 }

 .talk-card p {
   font-size: 15px;
   font-weight: 500;
   margin: 0;
   text-align: left;
 }

 /* Responsive */
 @media (max-width: 1024px) {
   .talk-grid {
     grid-template-columns: repeat(2, 1fr);
   }
 }

 @media (max-width: 600px) {
   .talk-grid {
     grid-template-columns: 1fr;
   }

   .talk-card {
     max-width: 100%;
   }
 }

 /* row-4 end */



 /* Yellow bubble half overlapping top */
 .yellow-bubble {
   position: absolute;
   left: 0;
   top: -25px;
   /* half overlap */
   width: 70px;
   height: 70px;
   background: #FFD633;
   border-radius: 10px;
   z-index: 1;
 }

 /* Blue testimonial card */


 /* Tail right side */
 .testimonial-card::after {
   /* content: "";
   position: absolute;
   bottom: 20px;
   right: -20px;
   width: 0;
   height: 0;
   border-left: 20px solid #2BA6A6;
   border-top: 20px solid transparent;
   border-bottom: 20px solid transparent; */
 }

 h3 {
   margin: 0 0 10px;
 }

 /* Stars right aligned */
.stars {
    display: flex;
    justify-content: flex-end;
    font-size: 25px;
}

 .stars span {
   font-size: 20px;
   color: white;
 }

 p {
   margin: 0 0 15px;
   line-height: 1.5;
 }

 .author {
   text-align: right;
   font-style: italic;
   font-size: 14px;
 }

 /* Dots */
 .dots {
   display: flex;
   justify-content: flex-start;
   margin-top: 15px;
 }

 .dot {
   height: 10px;
   width: 10px;
   margin: 0 5px;
   background: #f8f8f8;
   border-radius: 50%;
   display: inline-block;
   cursor: pointer;
   transition: background 0.3s;
 }

.dot.active {
    background: #e5c613;
}

 /* Responsive */
 @media (max-width: 600px) {


   .yellow-bubble {
     width: 50px;
     height: 50px;
     top: -18px;
   }
 }

 /* row 5 end  */

 .btn-warning {
   background: #E1C635;
   border: none;
   padding: 12px 25px;
   font-weight: 600;
   border-radius: 30px;
 }


 /* --- Global Reset/Base Styles for V2 --- */
 .talkitout-footer-v2 {
   background-color: #ffffff;
   /* White background for the second image */
   padding: 30px 0;
   font-family: Arial, sans-serif;
   color: #444444;
   border-top: 1px solid #eeeeee;
   /* Light border above the footer */
 }

 .talkitout-footer-v2 .container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 15px;
 }

 .talkitout-footer-v2 .row {
   display: flex;
   flex-wrap: wrap;
   /* Ensure columns wrap on mobile */
   margin-bottom: 20px;
 }

 /* Simulate Bootstrap column spacing if Bootstrap is not linked */
 .talkitout-footer-v2 .col-md-4 {
   flex-basis: 33.333%;
   max-width: 33.333%;
   padding: 0 15px;
 }

 /* --- Column 1: Logo & Social --- */
 .talkitout-footer-v2 .footer-column-1 {
   display: flex;
   flex-direction: column;
 }

 .talkitout-footer-v2 .logo-section {
   display: flex;
   align-items: center;
   margin-bottom: 20px;
 }

 .talkitout-footer-v2 .footer-logo-v2 {
   width: 30px;
   /* Small icon size like in the image */
   height: auto;
   margin-right: 5px;
 }

 .talkitout-footer-v2 .logo-text-v2 {
   font-size: 16px;
   font-weight: bold;
   color: #333333;
 }

 /* --- Base Styles for Exact Image Match --- */
 .talkitout-footer-exact {
   background-color: #f7f7f7;
   /* Exact background color from the image */
   padding: 50px 20px;
   font-family: 'Poppins', Arial, sans-serif;
   /* Poppins-like font for modern look */
   color: #444444;
 }

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

 .talkitout-footer-exact .row-exact {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   /* Align sections to the top */
   gap: 20px;
 }

 /* --- 1. Large Logo Card (Left Column) --- */
 .talkitout-footer-exact .logo-col-exact {
   flex-basis: 35%;
   /* Wider base for the logo card */
   max-width: 35%;
 }

 .talkitout-footer-exact .logo-card-exact {
   background-color: #ffffff;
   padding: 30px 40px;
   /* Padding for the card */
   border-radius: 8px;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
   /* Subtle shadow for the card effect */
   display: flex;
   flex-direction: column;
   align-items: center;
 }

 .talkitout-footer-exact .main-icon-exact {
   width: 160px;
   /* Large size as shown in the image */
   height: auto;
 }

 .talkitout-footer-exact .logo-text-exact {
   font-size: 28px;
   font-weight: 600;
   /* Semi-bold */
   color: #333333;
   margin-top: 10px;
 }

 /* --- 2. Featured Links (Middle Column) --- */
 .talkitout-footer-exact .links-col-exact {
   flex-basis: 25%;
   max-width: 25%;
   padding-top: 5px;
   /* Alignment adjustment */
 }

 .talkitout-footer-exact .section-title-exact {
   font-size: 18px;
   font-weight: bold;
   color: #000000;
   margin-bottom: 15px;
 }

 .talkitout-footer-exact .links-list-exact {
   list-style: none;
   padding: 0;
 }

 .talkitout-footer-exact .links-list-exact li {
   margin-bottom: 8px;
   display: flex;
   align-items: center;
 }

 .talkitout-footer-exact .bullet-arrow-exact {
   color: #f7b733;
   /* Yellow/Orange color for the arrow */
   font-size: 12px;
   margin-right: 8px;
 }

 .talkitout-footer-exact .links-list-exact a {
   text-decoration: none;
   color: #000000;
   font-size: 15px;
   transition: color 0.2s;
 }

 .talkitout-footer-exact .links-list-exact a:hover {
   color: #f7b733;
 }

 /* --- 3. Connect with Us (Right Column) --- */
 .talkitout-footer-exact .contact-col-exact {
   flex-basis: 40%;
   /* Widest column for the text content */
   max-width: 40%;
   padding-top: 5px;
   /* Alignment adjustment */
 }

 .talkitout-footer-exact .contact-group-exact {
   margin-bottom: 20px;
 }

 .talkitout-footer-exact .contact-question-exact {
   font-size: 16px;
   font-weight: 600;
   /* Semi-bold for questions/titles */
   color: #000000;
   margin-bottom: 2px;
   line-height: 1.2;
 }

 .talkitout-footer-exact .contact-action-exact {
   font-size: 15px;
   line-height: 1.4;
   margin: 0;
 }

 .talkitout-footer-exact .contact-link-exact {
   color: #f7b733;
   /* Yellow/Orange for phone/email */
   text-decoration: none;
   font-weight: bold;
   transition: opacity 0.2s;
 }

 .talkitout-footer-exact .contact-link-exact:hover {
   opacity: 0.8;
 }








/* -----------------------------Mandip Patel------------------------- */



.slider-screen {
    position: absolute;
    top: 17px;
    left: 12px;
    width: 96%;
    height: 65%;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
}

.carousel-item img {
    width: 100%;
    height: 269px;
    object-fit: cover;
}

      .monitor {
      position: relative;
      display: inline-block;
    }

    .monitor img {
      width: 100%;
      max-width: 500px;
      /* height: auto; */
      display: block;
    }




    .hero{
    background-image: url(../img/Vector1.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
    


.complete-main {
    position: absolute;
    right: 0;
    width: 100%;
}


.feature-box {
    flex: 1;
    min-width: 180px;
    margin: 10px;
    display: flex;
    align-items: anchor-center;
}

.feature-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 8px;
    margin-right: 15px;
}

.features p {
    font-size: 15px;
    white-space: nowrap;
    font-weight: 700;
}


.features {
    background: #40ACAF;
    color: #fff;
    padding: 30px 20px;
      border-radius: 50px 0px 0px 50px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
    justify-content: normal;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}





img.process-img {
    width: 100%;
}

.services-details {
 width: 275px;
 height: 230px;
 /* flex-shrink: 0; */
 border-radius: 31px;
 background: #F5F5F5;
 position: absolute;
 bottom: 35%;
 right: -245px;
}
.positive-relative{
  position: relative;
}

.p-services-details {
    color: #113349;
    font-size: 20px;
    font-weight: 600;
}


.services-details .btn-warning {
    background: #E1C635;
    border: none;
    padding: 8px 78px;
    font-weight: 600;
    border-radius: 0px;
    margin-top: 15px;
    color: #ffffff;
}


.services-details .dropdown-toggle::after

 {
    display: inline-block;
    margin-left: 6.255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
img.whatsapp1 {
    width: 20px;
    margin-left: 5px;
    margin-right: 5px;
}
.user-imges img {
    width: 210px;
    height: 210px;
}

.buddies {
    background: #E1C635;
    padding: 60px 0;
    text-align: center;
    position: relative;
}


.design1 {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 10px;
}



.testimonial-container {
color: white;
    border-radius: 12px;
    z-index: 2;
    justify-content: center !important;
    align-items: center !important;
    background-repeat: no-repeat;
    height: 388px;
    position: relative;
}



.testimonial-card {
    color: white;
    position: absolute;
    z-index: 2;
    top: 75px;
    padding-left: 235px;
    padding-right: 180px;
}


.client-testi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}





















/* -----------------------------END Mandip Patel------------------------- */































 /* --- Mobile Responsiveness --- */
 @media (max-width: 992px) {
   .talkitout-footer-exact .row-exact {
     flex-wrap: wrap;
     gap: 30px;
   }

   /* Stack Logo on top, take full width */
   .talkitout-footer-exact .logo-col-exact {
     flex-basis: 100%;
     max-width: 100%;
     order: -1;
     /* Place it first */
   }

   /* Stack Links and Contact side-by-side (50/50) */
   .talkitout-footer-exact .links-col-exact,
   .talkitout-footer-exact .contact-col-exact {
     flex-basis: 48%;
     /* Almost half each */
     max-width: 48%;
   }
 }

 @media (max-width: 600px) {
   .talkitout-footer-exact {
     padding: 40px 15px;
   }
   .dashboard-content{
    margin-top: 20px;
   }
   /* Stack all columns vertically on very small screens */
   .talkitout-footer-exact .links-col-exact,
   .talkitout-footer-exact .contact-col-exact {
     flex-basis: 100%;
     max-width: 100%;
   }
 }

 .disclaimer-col-exact {
   text-align: center;
   /* center aligned */
   margin-top: 10px;
 }

 .disclaimer-text-exact {
   font-size: 13px;
   color: #000000;
   /* light grey */
   line-height: 1.6;
 }

 html,
 body {
   max-width: 100%;
   overflow-x: hidden;
 }


  @media (max-width: 768px) {

    .hero {
    text-align: center; 
}

.hero a {
    margin-bottom: 24px;
}

.complete-main {
    position: relative;
    right: 0;
    width: 100%;
}

.features {
    background: #40ACAF;
    color: #fff;
    padding: 30px 20px;
    border-radius: 00px 0px 0px 00px;
    margin-top: -50px;
    position: relative;
    z-index: 1;
    justify-content: normal;
    align-items: center;
    flex-wrap: wrap;
    gap: 0px;
}
.talk-pro {
    text-align: center;
}

img.process-img {
    margin-bottom: 30px;
}

.footer-text {
    display: grid;
}

.services-details {
    width: 100%;
    height: 230px;
    border-radius: 31px;
    background: #F5F5F5;
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 30px;
    order: 2;
}

.avail-52 {
    padding-top: 0px !important;
}

.testimonial-container {
    background-color: #40acaf;
}
.testi-img img {
    display: none;
}

.testimonial-card {
    color: white;
    position: relative;
    z-index: 2;
    top: 30px;
    padding-left: 30px;
    padding-right: 30px;
}
.author {
    text-align: center;
}

.dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.feature-box {
    flex: 1;
    min-width: 180px;
    margin: 10px;
    display: flex;
    align-items: anchor-center;
    margin-bottom: 40px;
}
img.plant {
    display: none;
}
.boy {
    position: absolute;
    bottom: -145px;
    right: -251px;
    width: 180px;
    z-index: 3;
}
.slider-screen {
    position: absolute;
    top: 14px;
    left: 10px;
    width: 96%;
    height: 65%;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
}

.carousel-item img {
    width: 100%;
    height: 219px;
    object-fit: cover;
}


.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    height: 100vh;
    position: fixed;
    width: 100%;
    background-color: #000000e3;
    top: 78px;
    z-index: 199;
    left: 0;
    padding-left: 15px;
    padding-top: 15px;
    transition: 0.5s;
}

.navbar-nav .nav-link {
    margin: 0 10px;
    color: #ffffff;
}
.user-imges img {
    width: 160px;
    height: 160px;
}

.services-div {
    display: flex;
    flex-direction: column;
}

.testimonial-container {
    color: white;
    border-radius: 12px;
    z-index: 2;
    justify-content: center !important;
    align-items: center !important;
    background-repeat: no-repeat;
    height: 300px;
    position: relative;
}
}

/* about us */

.heart-text h2 {
    color: #5f5e63;
    font-size: 50px;
    text-align: center;
    margin-top: 25px;
}
.heart-text span {
    color: #ff5757;
    /* font-size: 46px; */
}

.heart-text p {
    color: #5f5e63;
    font-size: 22px;
    text-align: center;
}


.speak-heart {
    margin-top: 50px;
    text-align: center;
}

.about-text p {
    margin-bottom: 0;
    font-size: 16px;
    text-align: justify;
}

.about-text {
   border: 2px solid #e3c726;
    padding: 10px;
    border-radius: 15px;
    background-color: #ffffff;
    z-index: 2;
    position: relative;
}

.abput-1 {
    display: flex;
    writing-mode: vertical-lr;
    text-orientation: upright;
    justify-content: center;
    width: 100%;
    font-weight: 700;
    gap: 0;
    font-size: 44px;
    color: #e3c726;
}


.about-text span {
    font-size: 16px;
    font-weight: 600;
    color: #e3c726;
}


.top-gp {
    position: relative;
    top: -80px;
}


.founder-1 {
    background-color: #4aacae;
    padding-top: 50px;
    padding-bottom: 50px;
}


.foun-1{
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    color: #fff;
}

.found-text p {
    margin-bottom: 0;
    font-size: 16px;
    color: #ffff;
    text-align: justify;
}

.found-text {
    border: 2px solid #ffff;
    padding: 10px;
    border-radius: 15px;
    background-color: #4aacae;
    position: relative;
    z-index: 2;
}

.name-plate {
    background-color: #e3c726;
    text-align: center;
    padding: 11px 0px;
}

.name-plate h2 {
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
}

.name-plate p {
    font-size: 30px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0;
}

.about-img1 {
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-img1 img {
    width: 370px;
    text-align: center;
}
.narendra {
    position: relative;
    top: -65px;
}


.found-text-1 {
    padding-bottom: 70px;
}



.world-1 {
    padding: 80px 0;
}

.health-text p {
    margin-bottom: 0;
    font-size: 16px;
    text-align: justify;
}



.health-1 {
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    color: #000000;
    position: relative;
    background-color: #ffffff;
}

.pt-100 {
    padding-top: 100px;
}

.mental-mission-1 {
    color: #0097b2;
    text-align: center;
    font-weight: 700;
    font-size: 42px;
    border: 2px solid #0097b2;
    border-radius: 15px;
    padding: 10px;
    position: relative;
    background-color: #ffffff;
}



.mental-text p {
    font-size: 19px;
    text-align: center;
    color: #0097b2;
        font-weight: 400;
}


.mental-text {
    margin-top: 40px;
    margin-bottom: 40px;
}

.mental-1 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.far-1 {
    padding: 70px 0;
    text-align: center;
    padding-bottom: 20px;
}

.far-1 h2 {
    font-size: 42px;
    text-align: center;
    color: #0097b2;
        font-weight: 400;
}




.Impact-mission-1 {
    color: #0097b2;
    text-align: center;
    font-weight: 400;
    font-size: 45px;
    border: 2px solid #0097b2;
    border-radius: 15px;
    padding: 10px;
}



.our-mission h2 {
    font-size: 42px;
    font-weight: 600;
    /* font-size: 35px; */
    text-align: center;
    color: #ffffff;
    /* font-weight: 400; */
}


.our-mission p {
    font-size: 16px;
    color: #ffffff;
    margin-top: 30px;
    text-align: center;
}


.mission-1 {
    background-color: #0097b2;
    padding: 25px;
    border-radius: 20px;
}


.pb-100 {
    padding-bottom: 100px;
}
.pb-250 {
    padding-bottom: 250px;
}

.mision10{
  position: relative;
  padding-bottom: 50px;
}


.mission-icon {
    width: 165px;
    height: 165px;
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -150px;
    left: 45px;
        flex-direction: column;
}

.mission-icon img {
    width: 90px;
}



.mission-icon-right {
    width: 165px;
    height: 165px;
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
      flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -150px;
    right: 45px;
}

.mission-icon-right img {
    width: 90px;
}

.mission-icon span {
    color: #4aacae;
    font-size: 35px;
    font-weight: 400;
}

.mission-icon-right span {
    color: #4aacae;
    font-size: 35px;
    font-weight: 400;
}

.normalish {
    font-size: 34px;
    font-weight: 400;
    font-style: italic;
    color: rgb(255, 255, 255);
    font-kerning: normal;
    margin-top: -10px;
}


.collaborate h2{font-size: 42px;font-weight: 600;/* font-size: 35px; *//* font-weight: 400; */font-style: normal;color: rgb(74, 172, 174);}

.collaborate p{
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: rgb(74, 172, 174);
}


.solution{
  display: block;
}

.solution-mobile{
  display: none;
}



.pt-w {
    padding-top: 90px;
}



.map-img1 {
    transform: translate(0px, 52.73px) rotate(0deg);
    order: 1;
}





.health-15 {
    position: relative;
    background: #f0f8ff00;
}



















section {
    position: relative;
}












.line-1 {
    width: 2px;
    border: 1px dashed #e3c726;
    position: absolute;
    top: 45%;
    left: 52%;
    height: 55%;
    z-index: 0;
}

.line-2 {
    width: 2px;
    border: 1px dashed #ffffff;
    position: absolute;
    top: 45%;
    left: 52%;
    height: 55%;
    z-index: 0;
}

.line-2 {
    width: 2px;
    border: 1px dashed #ffffff;
    position: absolute;
    top: 0%;
    left: 52%;
    height: 69.5%;
    z-index: 0;
}

.line-3 {
    width: 55px;
    border: 1px dashed #ffffff;
    position: absolute;
    top: 42%;
    right: -24px;
    height: 0%;
    z-index: 1;
}


.line-4 {
    width: 16%;
    border: 1px dashed #e3c726;
    position: absolute;
    top: 11%;
    left: 27%;
    height: 0%;
    z-index: 1;
}

.line-5 {
    width: 1px;
    border: 1px dashed #e3c726;
    position: absolute;
    top: 11%;
    left: 27%;
    height: 67%;
    z-index: 0;
}

.line-6 {
    width: 1px;
    border: 1px dashed #e3c726;
    position: absolute;
    bottom: -108px;
    right: 20%;
    height: 20%;
    z-index: 0;
}







/* user dashboard  */
/* assets/css/style.css */


/* 1. MODERN VARIABLES & BODY STYLES */
:root {
    --primary-color: #5B6CFF; /* A modern, friendly blue */
    --primary-light: #F0F2FF;
    --accent-color: #FFC107;
    --text-dark: #2C3E50;
    --text-light: #8592A3;
    --bg-color: #F7F8FC;
    --card-bg: #FFFFFF;
    --border-color: #EBEEF2;
    --shadow-color: rgba(44, 62, 80, 0.1);
}

.dashboard-body {
  background-color: var(--bg-color);
  color: var(--text-dark);
  font-family: 'Inter', sans-serif; /* Modern, clean font */
}


/* 2. MODERN SIDEBAR */
.dashboard-wrapper {
  display: flex;
  min-height: 100vh;
}

.dashboard-sidebar {
  width: 260px;
  background: var(--card-bg);
  border-right: 1px solid var(--border-color); /* Subtle border */
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  flex-shrink: 0;
  transition: margin-left 0.3s ease-in-out;
}

.sidebar-header {
  padding: 0 1.5rem 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.sidebar-header .navbar-brand img {
  height: 80px;
}

.sidebar-nav {
  list-style: none;
  padding: 0 0.75rem;
  margin: 0;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem;
  color: var(--text-light);
  border-radius: 8px; /* Softer radius */
  margin-bottom: 0.25rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.sidebar-nav .nav-link i {
  margin-right: 1rem;
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  transition: color 0.2s ease;
}

.sidebar-nav .nav-link:hover {
  background-color: var(--primary-light);
  color: #e7cb39;
}
.sidebar-nav .nav-link:hover i {
  color: #e7cb39;
}

.sidebar-nav .nav-link.active {
  background-color: #e7cb39;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(91, 108, 255, 0.3);
}

.sidebar-nav .nav-link.active i {
  color: #fff;
}

.sidebar-footer {
  margin-top: auto;
  padding: 1rem 1.5rem;
}


/* 3. MODERN CONTENT AREA & CARDS */
.dashboard-content {
  flex-grow: 1;
  /* padding: 2rem; */
  overflow-y: auto;
  transition: margin-left 0.3s ease-in-out;
}

.content-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 0;
  border-bottom: none; /* Removed border */
}

#sidebar-toggler {
  border: 1px solid var(--border-color);
  margin-right: 1rem;
  background-color: var(--card-bg);
}

.content-header .h2, .content-header .h3 {
  margin-bottom: 0;
  font-weight: 700;
}

.card {
  border: none; /* No borders on cards */
  border-radius: 16px; /* Much rounder corners */
  box-shadow: 0 8px 30px var(--shadow-color);
  margin-bottom: 1.5rem;
}

.card-header {
  background-color: transparent;
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem;
}

.card-body {
  padding: 1.5rem;
}

/* Welcome Card Specific Styles */
.welcome-card {
    background: linear-gradient(105deg, var(--primary-color) 0%, #8390ff 100%);
    color: #fff;
}
.welcome-card h3 {
    font-weight: 700;
}
.welcome-card p {
    color: rgba(255, 255, 255, 0.85);
}
.welcome-card .btn-light {
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

/* 4. MODERN FORMS & TABLES */
.form-label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-control {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    background-color: #fff;
}
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(91, 108, 255, 0.2);
}
.form-control[readonly] {
    background-color: var(--bg-color);
}

.table {
    border-collapse: separate;
    border-spacing: 0 8px;
}
.table th {
    color: var(--text-light);
    font-weight: 600;
    border: none !important;
}
.table td {
    background: #fff;
    border: none !important;
    vertical-align: middle;
    padding: 1rem;
}
.table tr td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.table tr td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.table-hover tbody tr:hover td {
    background-color: var(--primary-light);
}


/* 5. SIDEBAR TOGGLE LOGIC (REMAINS SIMILAR) */
.dashboard-wrapper.sidebar-collapsed .dashboard-sidebar {
  margin-left: -260px;
}

@media (max-width: 991.98px) {
  .dashboard-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1030;
    margin-left: -260px;
    transition: margin-left 0.3s ease-in-out;
  }
  .dashboard-wrapper.sidebar-visible .dashboard-sidebar {
    margin-left: 0;
  }
  .sidebar-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1029;
  }
  .dashboard-wrapper.sidebar-visible .sidebar-overlay {
    display: block;
  }
}
/* assets/css/style.css */

/* --- ADD THIS NEW CSS FOR NOTIFICATIONS --- */

.notification-item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.notification-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.notification-item:first-child {
  padding-top: 0;
}

.notification-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-color);
  margin-right: 1rem;
}

.notification-content {
  flex-grow: 1;
}

.notification-content p {
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.notification-content small {
  color: var(--text-light);
}

.notification-unread {
  position: relative;
  background-color: var(--primary-light);
  border-radius: 8px;
}

.notification-unread::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
}


.password-requirements {
  list-style: none;
  padding-left: 0;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.password-requirements li {
  margin-bottom: 0.25rem;
}

.password-requirements li::before {
  content: 'Ã¢â‚¬Â¢';
  margin-right: 0.5rem;
  color: var(--primary-color);
}


/* --- ADD THIS CSS FOR THE NEW DASHBOARD HEADER --- */

.dashboard-header {
  padding: 0.75rem 1.5rem;
  background-color: var(--card-bg) !important;
  border-radius: 16px;
    box-shadow: 0 8px 30px var(--shadow-color);
    margin-bottom: 1.5rem;
}

.header-search-form .form-control {
  background-color: var(--bg-color);
  border-color: var(--border-color);
  border-radius: 8px;
  width: 250px;
  transition: all 0.2s ease;
}
.header-search-form .form-control:focus {
  background-color: #fff;
  border-color: var(--primary-color);
  width: 280px;
}

.profile-dropdown .dropdown-toggle::after {
  display: none; /* Hides the default Bootstrap dropdown arrow */
}

.profile-dropdown .profile-image {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 2px solid var(--border-color);
  transition: border-color 0.2s ease;
}

.profile-dropdown .dropdown-toggle:hover .profile-image {
  border-color: var(--primary-color);
}

.profile-dropdown .dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 30px var(--shadow-color);
  padding: 0.5rem 0;
}

.profile-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.6rem 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.profile-dropdown .dropdown-item i {
  margin-right: 0.75rem;
  width: 16px;
  color: var(--text-light);
}

.profile-dropdown .dropdown-item:hover {
  background-color: var(--primary-light);
  color: var(--primary-color);
}
.profile-dropdown .dropdown-item:hover i {
  color: var(--primary-color);
}


.dashboard-footer {
  margin-top: 2rem;
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px var(--shadow-color);
}

.dashboard-footer .footer-logo img {
  height: 40px;
}
.dashboard-footer .footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-left: 0.5rem;
}

.dashboard-footer h6 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.dashboard-footer .footer-links a {
  color: var(--text-light);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.dashboard-footer .footer-links a:hover {
  color: var(--primary-color);
}

.dashboard-footer .contact-info p {
  color: var(--text-light);
  margin-bottom: 1rem;
}
.dashboard-footer .contact-info a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}
.dashboard-footer .contact-info a:hover {
  text-decoration: underline;
}

.dashboard-footer .footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}
/* assets/css/style.css */

/* --- ADD THIS CSS FOR THE ABOUT US PAGE --- */

/* Hero Section */
.about-hero {
  background-color: var(--primary-light);
  padding: 4rem 0;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
}

.about-hero p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.about-hero .img-fluid {
    border-radius: 16px;
    box-shadow: 0 8px 30px var(--shadow-color);
}

/* Impact Section */
.impact-section {
  background-color: var(--bg-color);
}

.impact-card {
  text-align: center;
  padding: 2rem;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px var(--shadow-color);
  height: 100%;
}

.impact-card .display-4 {
  font-weight: 700;
  color: var(--primary-color);
}

.impact-card p {
  color: var(--text-light);
}

/* Mission, Vision, Values Section */
.values-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.values-list i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  margin-top: 5px;
}

/* Founders Section */
.founder-card {
  text-align: center;
}

.founder-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.founder-card .card-body {
    margin-top: -60px;
    padding-top: 70px;
}

/* Ensure the app-footer class uses the modern styles */
.app-footer {
  margin-top: 4rem;
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px var(--shadow-color);
}

/* video page */
    /* Hero Section */
    .video-hero {
      background: linear-gradient(180deg, #113349 0%, #1d4962 100%);
      color: #fff;
      text-align: center;
      padding: 100px 0 70px;
    }
    .video-hero h1 {
      font-weight: 700;
      font-size: 2.5rem;
    }

    /* Featured Video */
    .featured-video {
      background: #f8f9fa;
      padding: 80px 0;
    }
    .featured-video iframe {
      border-radius: 20px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    .featured-video h3 {
      color: #113349;
      font-weight: 700;
      margin-top: 30px;
    }

    /* Video Grid */
    .videos-grid {
      background: #fff;
      padding: 80px 0;
    }
    .video-card {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
      transition: 0.3s;
    }
    .video-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }
    .video-card img {
      width: 100%;
      height: 230px;
      object-fit: cover;
      transition: 0.3s;
    }
    .video-card:hover img {
      filter: brightness(0.8);
    }
    .video-play {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      font-size: 2.5rem;
      background: rgba(0,0,0,0.6);
      border-radius: 50%;
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
    }
    .video-card:hover .video-play {
      background: #E1C635;
      color: #113349;
    }
    .video-info {
      padding: 20px;
      text-align: center;
    }
    .video-info h5 {
      font-weight: 700;
      color: #113349;
      margin-bottom: 8px;
    }
    .video-info p {
      color: #666;
      font-size: 0.95rem;
      margin: 0;
    }
    .load-more-btn {
      border-radius: 50px;
      border: 2px solid #113349;
      color: #113349;
      font-weight: 600;
      transition: 0.3s;
    }
    .load-more-btn:hover {
      background: #113349;
      color: #fff;
    }
        /* Page Intro */
    .blog-hero {
      background: linear-gradient(180deg, #113349 0%, #1d4962 100%);
      color: #fff;
      padding: 100px 0 70px;
      text-align: center;
    }
    .blog-hero h1 {
      font-weight: 700;
      font-size: 2.5rem;
    }

    /* Latest Posts */
    .latest-posts {
      background: #f8f9fa;
      padding: 80px 0;
    }
    .latest-posts .section-title {
      font-weight: 700;
      color: #113349;
      margin-bottom: 40px;
    }
    .latest-post {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
      transition: 0.3s;
    }
    .latest-post:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    }
    .latest-post img {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }
    .latest-post .content {
      padding: 25px;
    }
    .latest-post .badge {
      background: #E1C635;
      color: #000;
      font-size: 0.85rem;
      border-radius: 30px;
      padding: 6px 14px;
    }
    .latest-post h4 {
      font-weight: 700;
      margin-top: 15px;
      color: #113349;
    }
    .latest-post p {
      color: #555;
      font-size: 0.95rem;
      margin-bottom: 15px;
    }

    /* All Blogs */
    .all-blogs {
      padding: 80px 0;
      background: #fff;
    }
    .all-blogs h2 {
      font-weight: 700;
      color: #113349;
      margin-bottom: 40px;
      text-align: center;
    }
    .blog-card-modern {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      height: 100%;
    }
    .blog-card-modern:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }
    .blog-card-modern img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }
    .blog-card-body {
      padding: 20px;
    }
    .blog-card-body h5 {
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 10px;
      color: #113349;
    }
    .blog-card-body p {
      color: #666;
      font-size: 0.95rem;
      margin-bottom: 15px;
          text-align: justify;
    }
    .blog-card-body .badge {
      background: #E1C635;
      color: #000;
      font-weight: 500;
      font-size: 0.8rem;
      margin-bottom: 10px;
    }
    .load-more-btn {
      border-radius: 50px;
      border: 2px solid #113349;
      color: #113349;
      font-weight: 600;
      transition: 0.3s;
    }
    .load-more-btn:hover {
      background: #113349;
      color: #fff;
    }
        .blog-header {
      position: relative;
      background: url('assets/img/blog-1.png') center/cover no-repeat;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
    }
    .blog-header::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.6);
    }
    .blog-header .content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }
    .blog-header h1 {
      font-weight: 700;
      font-size: 2.2rem;
    }
    .blog-header .meta {
      color: #ddd;
      font-size: 0.9rem;
    }

    .blog-content {
      padding: 80px 0;
      background: #fff;
    }
    .blog-content h2, .blog-content h3 {
      color: #113349;
      font-weight: 700;
      margin-top: 2rem;
    }
    .blog-content p {
      color: #555;
      line-height: 1.8;
      font-size: 1.05rem;
      margin-bottom: 1rem;
    }
    .blog-content img {
      border-radius: 12px;
      margin: 30px 0;
      max-width: 100%;
    }
    .quote-box {
      background: #f8f9fa;
      border-left: 4px solid #E1C635;
      padding: 20px;
      font-style: italic;
      margin: 2rem 0;
    }

    .share-post {
      margin-top: 40px;
      border-top: 1px solid #eee;
      padding-top: 20px;
    }
    .share-post a {
      color: #113349;
      font-size: 1.2rem;
      margin-right: 15px;
      transition: 0.3s;
    }
    .share-post a:hover {
      color: #E1C635;
    }

    .related-posts {
      background: #f8f9fa;
      padding: 80px 0;
    }
    .related-posts h3 {
      font-weight: 700;
      color: #113349;
      text-align: center;
      margin-bottom: 40px;
    }
    .blog-card-modern {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      height: 100%;
    }
    .blog-card-modern:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }
    .blog-card-modern img {
      width: 100%;
      height: 220px;
      object-fit: fill;
    }
    .blog-card-body {
      padding: 20px;
    }
    .blog-card-body h5 {
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 10px;
      color: #113349;
    }
    .blog-card-body .badge {
      background: #E1C635;
      color: #000;
      font-weight: 500;
      font-size: 0.8rem;
      margin-bottom: 10px;
    }

        /* Hero */
    .faq-hero {
      background: linear-gradient(180deg, #113349 0%, #1d4962 100%);
      color: #fff;
      text-align: center;
      padding: 100px 0 70px;
    }
    .faq-hero h1 {
      font-weight: 700;
      font-size: 2.5rem;
    }
    .faq-hero p {
      color: #dbe8f0;
      font-size: 1.1rem;
      max-width: 700px;
      margin: 10px auto 0;
    }

    /* Accordion Section */
    .faq-section {
      background: #f8f9fa;
      padding: 80px 0;
    }
    .faq-section .accordion-item {
      border: none;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }
    .faq-section .accordion-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    .faq-section .accordion-button {
      background: none;
      color: #113349;
      font-weight: 600;
      font-size: 1rem;
      border-radius: 15px;
      box-shadow: none;
      padding: 18px 20px;
    }
    .faq-section .accordion-button:focus {
      box-shadow: none;
      border: none;
    }
    .faq-section .accordion-button:not(.collapsed) {
      background: #E1C635;
      color: #113349;
    }
    .faq-section .accordion-body {
      padding: 20px;
      color: #555;
      line-height: 1.7;
      font-size: 0.98rem;
    }

    /* CTA */
    .faq-cta {
      text-align: center;
      padding: 60px 0;
      background: #fff;
    }
    .faq-cta h3 {
      color: #113349;
      font-weight: 700;
      margin-bottom: 15px;
    }
    .faq-cta p {
      color: #555;
      margin-bottom: 25px;
    }
    .faq-cta .btn {
      border-radius: 50px;
      background: #40ACAF;
      border: none;
      color: #fff;
      font-weight: 600;
      padding: 12px 35px;
      transition: 0.3s;
    }
    .faq-cta .btn:hover {
      background: #113349;
    }
    
    