@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@font-face {
    font-family: 'Domus';
    src: url('assests/fonts/domus.ttf/fonnts.com-Domus.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
:root 
{
  --jimmy : #252525;
}
/* General Reset */
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    
  }
  h1, h2, h3, h4, h5, h6, ul, li, a, img 
  {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Domus', sans-serif;

  }
  /* * {
    outline: 1px solid red; Helps you spot the offending element 

  } */
  
p
{
    font-family: 'Rubik', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



  /* starting of header  */
  ul {
    list-style: none;
  }
  
  /* Navbar Component */
  .navbar_component {
    background-color: #fff; /* White background */
    border-bottom: 1px solid #eaeaea; /* Subtle border for separation */
    position: fixed; /* Sticks to the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* height: 80px; */
  }
  
  /* Sticky Wrapper */
  .sticky-wrapper {
    position: relative;
    width: 100%;
  }
  
  .sticky-active {
    padding: 10px 0;
  }
  
/* Main Menu - Desktop */
.main-menu {
  display: flex;
  gap: 20px;
  position: absolute;
  right: 100px;
  bottom: 21px;
}

.main-menu ul {
  display: flex;
  gap: 20px;
  list-style: none;
  text-decoration: none;
}

.main-menu ul li a {
  color: #333;
  font-weight: 500;
  font-size: 20px;
  transition: color 0.3s ease;
  list-style: none;
  text-decoration: none;
}

.main-menu ul li a:hover {
  color: #00c8a7;
}

/* Toggle Button */
.th-menu-toggle {
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  display: none;
  position: absolute;
    right: 15px;
    bottom: 10px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: -250px;
  height: 100%;
  width: 250px;
  background-color: #f3f3f3;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  transition: left 0.3s ease-in-out;
  padding: 10px;
  /* border: solid 1px; */
}

.mobile-menu.active {
  left: 0;
  padding-top: 69px;
    /* background-image: url(assests/images/lp-hero-2-mob.png); */
    background-image: linear-gradient(45deg, #e8e8ef, transparent);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: auto;
  padding-top: 50px;
  list-style: none;
}

.mobile-menu ul li a {
  font-size: 24px;
  font-weight: 500;
  color: #0f0f0f;
  transition: color 0.3s ease;
  text-decoration: none;
}



/* Responsive Styles */
@media (max-width: 991px) {
  .main-menu {
      display: none;
  }

  .th-menu-toggle {
      display: inline-block;
  }

  .mobile-menu {
      display: block;
  }
}
/* Hide the element on small screens */
@media (max-width: 768px) {
  .testimonial-link {
    display: none;
  }
}

/* Display the element on large screens */
@media (min-width: 769px) {
  .testimonial-link {
    display: block;
  }
}

/* Display the element on small screens */
@media (max-width: 768px) {
  .testimonial-mobile {
    display: block;
  }
}

/* Hide the element on larger screens */
@media (min-width: 769px) {
  .testimonial-mobile {
    display: none;
  }
}
  /* ending of header  */

  /* banner section starting */
  
  /* Hero Block Styles */
  .hero_block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background-color: #f8f9fa; /* Light gray background */
    margin-top: 70px;
    background-image: url(assests/images/lp-hero-2.png);
    background-position: center;
    background-repeat: no-repeat;
  }
  @media (max-width: 768px) {
    .hero_block {
        background-image: url(assests/images/lp-hero-2-mob.png); /* Mobile version */
    }
}
  .hero_block-content {
    flex: 1;
    max-width: 600px;
    /* margin-left: 40px; */
  }
  
  .hero_block-content_heading {
    font-size: 36px;
    font-weight: bold;
    color: #292b46;
    /* margin-bottom: 15px; */
  }
  
  .hero_block-content_heading .texas-review-hero {
    color: #007bff; /* Blue for brand emphasis */
  }
  
  .aggresive {
    font-size: 16px;
    color: var(--jimmy);
    line-height: 1.6;
    margin-bottom: 15px;
  }
  .learn
 {
  color: #00c8a7;
 }  
 .grow
 {
  color: #ff7061;
 }
 .succeed
 {
  color: #e83a68;
 }
  /* .padding-bottom {
    margin-bottom: 20px;
  } */
  
  .landing-page-button {
    text-decoration: none;
    display: inline-block;
    background-color: #00c8a7; /* Blue button background */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    /* font-family: "Domus", Sans-serif; */
  }
  
  .landing-page-button:hover {
    background-color: #02ad91; /* Darker blue on hover */
  }
  
  .div-block-68 {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .banner-image {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
  }
  
  .hero_block-image {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  /* Fixed CTA for Mobile */
  .fixed-cta_div {
    display: none; /* Hidden by default, shown only on mobile */
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 1000;
    font-family: "Domus", Sans-serif;
  }
  
  .fixed-cta_div .fixed-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e83a68;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
  }
  
  .fixed-cta_div .fixed-cta:hover {
    background-color: #e83a68;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero_block {
      flex-direction: column;
      text-align: center;
      margin-top: 40px;
    }
  
    .hero_block-content {
      margin-bottom: 20px;
      margin-left: auto;
      padding-top: 10px;
    }
  
    .landing-page-button.desktop {
      display: none; /* Hide desktop buttons */
    }
  
    .landing-page-button.mobile {
      display: inline-block; /* Show mobile-specific buttons */
      margin-top: 30px;
    }
  
    .fixed-cta_div {
      display: block; /* Show the fixed CTA on mobile */
    }
  }
  
  @media (max-width: 480px) {
    .hero_block-content_heading {
      font-size: 28px;
    }
  
    .aggresive {
      font-size: 14px;
    }
  
    .landing-page-button {
      font-size: 14px;
      padding: 8px 16px;
    }
  
    .banner-image {
      max-width: 300px;
    }
  }
  /* Hide on desktop and laptop, display on mobile */
.landing-page-button.blue.mobile {
    display: none; /* Default is hidden */
  }
  
  @media (max-width: 768px) { /* Adjust the max-width as per your breakpoint */
    .landing-page-button.blue.mobile {
      display: inline-block; /* Display only on mobile devices */
    }
  }
  
  /* banner section ending */

  /* accordination classes starting */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .tuido {
    font-size: 32px; 
    text-align: center;
    margin-top: 30px ; 
    color: #292b46;
  }
  @media (max-width: 768px)
  {
    .tuido
    {
    font-size: 20px;
    }
    h2.sec-title.fw-semibold
    {
      font-size: 20px;
    }
  }
  .custom-underline {
    position: relative;
    display: inline-block; 
    padding: 0 5px; 
  }
  
  .custom-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px; 
    width: 100%;
    height: 5px;
    background-color: #00c8a7; 
    border-radius: 4px; 
    /* margin-top: 15px; */
    bottom: -10px;
  }
  
  .tuido span {
    margin: 10px 0; 
  }
  .container-tuido {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
  }

  .buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: auto;

  }

  .button {
    padding: 6px 20px;
    background: transparent;
    color: #292b46;
    border: 1px solid #00c8a7;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
  }

  .button.active {
    background: #02ad91;
    color: #fff;
    border: 1px solid #00c8a7;
  }

  .accordions {
    flex: 1;
    display: contents;
  }

  .accordion {
    display: none; /* Hide all accordions by default */
  }

  .accordion.active {
    display: contents; /* Show the active accordion */
  }

  .card {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    flex: 1 1 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
  }

  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
  }

  .card h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
  }

  @media (max-width: 768px) {
    .container-tuido {
      flex-direction: column;
      align-items: center;
    }

    .buttons {
      flex-direction: row;
      gap: 10px;
      justify-content: center;
      margin-bottom: 20px;
      order: -1; /* Moves buttons to the top */
    }

    .card {
      flex: 1 1 calc(50% - 15px);
      max-width: calc(50% - 15px);
    }
  }

  @media (max-width: 480px) {
    .card {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

 

  

/* branches section css */
.container-branches {
  padding: 2rem;
  background-color: #f9f9f9;
  background-image: url(assests/images/SR-Tuido-Branches-Section.png);
}

.title-area {
  margin-bottom: 2rem;
}

.title-area .sub-title {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-family: 'Domus';
  letter-spacing: 3.5px;

}

.title-area .sec-title {
  font-size: 32px;
  color: #00c8a7;
  margin-bottom: 0;
  line-height: 1.5;
  font-weight: 500;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.admission-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding: 5px;
}
.admission-card-Narsingh
{
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding: 5px;
  align-self: center;
}


.admission-card_img img {
  width: 100%;
  height: 50px;
  display: block;
  margin-top: 15px;

}

.admission-card_title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c3e50;
  margin: 1rem 1rem 0.5rem;
}

.admission-card_text {
  font-size: 1rem;
  color: #555;
  margin: 0 1rem 1rem;
  line-height: 1.6;
}

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

.gy-4 {
  gap: 1.5rem;
  margin: 25px;
}
.gy-4-5 {
  gap: 1.5rem;
  margin: 25px;
  align-items: center;
}

.col-md-6, .col-xl-4 {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: calc(33.333% - 1.5rem);

}
.col-md-6, .col-xl-4-Nar {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: calc(33.333% - 1.5rem);
  
}

@media (max-width: 768px) {
  .col-md-6, .col-xl-4 {
      flex: 1 1 calc(50% - 1rem);
      max-width: calc(50% - 1rem);
  }
}

@media (max-width: 576px) {
  .col-md-6, .col-xl-4 {
      flex: 1 1 100%;
      max-width: 100%;
  }
}
/* contact form starting  */

/* General Styles */
.get-in-touch {
  padding: 60px 15px;
  background-color: #292b46;
  /* background-image: url(assests/images/form-section-v1.png); */
}

.get-in-touch .container {
  max-width: 1200px;
  margin: auto;
}

/* Flexbox for alignment */
.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/* Content Section Styles */
section#about-get-in-touch {
  padding: 100px 0px 50px 0px;
  background: #eaebf3;
  display: flex;
}


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

.flex-container {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 20px;
}

.content-box {
flex: 1;
max-width: 60%;
background: #fff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
/* max-width: 400px; */
/* width: 100%; */
}

.form-box {
flex: 1;
max-width: 40%;
display: flex;
justify-content: center;
}

.title-area {
margin-bottom: 20px;
}

.sub-title {
color: #ed1722;
font-weight: bold;
font-size: 18px;
}

.sec-title {
color: #002b5f;
font-size: 28px;
margin-bottom: 15px;
}

.content-text {
margin-bottom: 20px;
font-size: 16px;
line-height: 1.6;
color: #252525;
font-style: italic;
}

.features-list ul {
list-style: none;
padding: 0;
}

.features-list ul li {
font-size: 16px;
margin-bottom: 10px;
color: #444;
}

.form-container {
/* background: #fff; */
padding: 30px;
border-radius: 8px;
/* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
max-width: 400px;
width: 100%;
}

.form-container h2 {
color: #00c8a7;
font-size: 32px;
margin-bottom: 20px;
text-align: center;
}

/* .form-container select,
.form-container input {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ddd;
border-radius: 100px;
margin-top:8px ;
}

.form-container button {
width: 100%;
padding: 12px;
background-color: #ed1722;
color: white;
font-size: 16px;
border: none;
border-radius: 4px;
cursor: pointer;
transition: 0.3s ease;
} */
.container-biryani {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 400px;
}
label {
  color: #fff;
    font-size: 15px;
    font-family: 'Rubik';
}

select {
  margin-top: 13px;
  margin-bottom: 15px;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 12px;
  appearance: none;
  background-color: #fff;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="black" d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}
select#subject {
  font-family: 'Rubik';
}
.form-6 {
  margin-bottom: 20px;
  /* padding: 15px; */
}
input[type="text"] {
  margin-top: 5px;
  margin-bottom: 15px;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 12px;
}
.radio-but {
  font-size: 16px;
  /* font-weight: bold; */
  margin-left: 5px;
 /* Change this color for your text */
}
input[type="radio"] {
  width: auto;
  margin-right: 10px;
  margin-top: 15px;
    margin-left: 5px;
    color: white;
}
span.radio-label {
  color: white;
  font-family: 'Rubik';
}
.hidden { display: none; }
.submit-btn {
  background-color: #00c8a7;
  color: rgb(255, 255, 255);
  border: none;
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  width: 100%;
}
.submit-btn:hover {
  background-color: #02ad91;
}


/* Responsive Design */
@media (max-width: 768px) {
.content-box {
    display: none;
}

.form-box {
    max-width: 100%;
}
}

  .form-bullets {
    margin-bottom: 25px;
    font-size: 17px;
    color: #252525;
    font-family: 'Rubik';
    font-weight: 400;
}

/* contact form section ending */

/* testimonals block starting */
/* General Section Styles */
.testimonial-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

/* Testimonial Slider */
.testimonial-slider {
  display: flex;
  /* gap: 20px; */
  overflow: hidden;
  scroll-behavior: smooth;
}

/* .testimonial-card {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease-in-out;
} */

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #007bff;
}

.author-name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.author-position {
  font-size: 14px;
  color: #777;
}

/* Slider Controls */
/* .slider-controls {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.prev-btn, .next-btn {
  background-color: #007bff;
  color: #fff;
  font-size: 18px;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
  background-color: #0056b3;
} */

/* Responsive Styles */
/* @media (min-width: 768px) {
  .testimonial-slider {
      gap: 40px;
  }

  .testimonial-card {
      flex: 0 0 50%;
      max-width: 50%;
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
      flex: 0 0 30.33%;
      max-width: 30.33%;
  }
} */
/* Testimonial Slider Container */
.testimonial-slider {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  width: 100%;
}

/* Testimonial Card */
.testimonial-card {
  flex: 0 0 100%; /* Adjust the width to take the full container width */
  max-width: 100%;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease-in-out;
  /* margin: 0 5px; */
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .testimonial-card {
      flex: 0 0 50%; /* Two cards per view on tablets */
      max-width: 50%;
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
      flex: 0 0 33.33%; /* Three cards per view on desktops */
      max-width: 33.33%;
  }
}
.dots-container {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #cccccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #00c8a7;
}

/* testimonial block ending */

/* timings and faqs starting */

/* General container styling */
.container-timings-faqs {
  padding: 20px;
  /* background-color: #f9f9f9; */
  border-radius: 8px;
  max-width: 1200px;
  margin: 50px auto;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

/* Row styling */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Columns */
.column {
  flex: 1 1 45%; /* Adjusts the column size */
  padding: 50px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Headings */
h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #222;
  font-weight: bold;
}

/* Class Timings */
.class-timings {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.class-timings li {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 10px;
}

/* Accordion Styles */
.accordion {
  border: none;
}

.accordion-item {
  margin-bottom: 25px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  background-color: #f8f8f8;
  color: #333;
  font-size: 16px;
  padding: 10px 15px;
  text-align: left;
  cursor: pointer;
  border: none;
  width: 100%;
  outline: none;
  transition: background-color 0.3s ease;
  font-family: 'Domus';
}

.accordion-header:hover {
  background-color: #ddd;
}

.accordion-body {
  display: none;
  padding: 15px;
  font-size: 14px;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
  border-top: 1px solid #ddd;
  font-family: 'Rubik';
}

/* Active accordion styles */
.accordion-item.active .accordion-body {
  display: block;
}

.accordion-item.active .accordion-header {
  background-color: #292b46;
  color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .column {
    flex: 1 1 100%;
    padding: 10px;
    margin: 15px;
  }
}

/* timings and faqs ending */

/* cta-button near footer */

.container-cta
 {
 padding: 25px;
 background-color: #292b46;
 margin: 25px;
 border-radius: 10px;
 }
 h2.cta-text 
 {
  color: white;
 }

 p.cta-text2 
 {
  color:whitesmoke
 }
 /* General styling for the CTA container */
.container-cta {
  display: flex;
  flex-wrap: wrap; 
  /* align-items: center; */
  justify-content: space-between;
  gap: 20px;
  padding: 13px;
  border-radius: 10px; 
  width: 80%;
margin: auto;  
margin-bottom: 20px;

}

/* Content section (text) */
.cta-content {
  flex: 1;
  /* min-width: 300px; */
  max-width: 50%;
  margin: auto;
  padding-left: 10px;
}

.cta-text {
  /* font-size: 24px; */
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.cta-text2 {
  font-size: 18px;
  margin-bottom: 10px;
  
}

.cta-text3 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #ffffff;
}

.cta-button1 {
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #00c8a7;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  align-items: center;
}

/* .cta-button1:hover {
  background-color: #292b46;
} */

/* Image section */
.cta-image {
  flex: 1;
  /* min-width: 300px; */
  /* max-width: 50%; Ensures image occupies half the space */
  /* text-align: right; Align image to the right */
}

.cta-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .container-cta {
    flex-direction: column; /* Stack content vertically */
    text-align: center;
  }

  .cta-content {
    max-width: 100%; /* Full width for smaller screens */
  }
}
  .cta-image {
    width: fit-content; /* Hides the image on mobile and tablets */
  }

/* copyright section */
/* Footer Background */
.container-footer
{
  text-align: center;
}
.footer-wrapper {
  background-color: #000000;  /* Ensure proper background color if image fails */
  padding: 20px 0;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1001;
}

/* Copyright Section */
.copyright-wrap {
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  color: #ffffff;
}

/* Footer Links */

.col-lg-6.text-end
{
  margin: auto;
}
.footer-links {
  text-align: right;
}

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

.footer-links ul li {
  display: inline;
  margin-left: 20px;
}

.footer-links ul li a {
  color: #007bff;
  text-decoration: none;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

/* Responsive Design for smaller screens */
@media (max-width: 767px) {
  .footer-links {
      text-align: center;
      /* margin-top: 15px; */
  }

  .footer-links ul li {
      display: block;
      margin-bottom: 10px;
  }
}
/* General Modal Styling */
#QuickView {
  display: none; /* Hidden by default */
  position: scroll;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  /* background: rgba(0, 0, 0, 0.7); Semi-transparent background */
  overflow-y: auto; /* Allow scrolling for tall content */
}

/* Modal Content Container */
#QuickView .container {
  position: relative;
  margin: 50px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  width: 90%;
  animation: fadeIn 0.3s ease-in-out;
}

/* Close Button */
#QuickView .mfp-close {
  position: absolute;
  top: 7px;
  right: 15px;
  background: #eba2a2;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, transform 0.2s ease;
}

#QuickView .mfp-close:hover {
  background: #ca2026;
  transform: scale(1.1);
}

/* Headings */
#QuickView h5.h5 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

#QuickView h5.mt-40 {
  margin-top: 40px;
}

/* Paragraphs */
#QuickView p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

/* Checklist */
#QuickView .checklist {
  margin-top: 15px;
  padding-left: 20px;
}

#QuickView .checklist ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#QuickView .checklist ul li {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

#QuickView .checklist ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 12px;
  color: #28a745;
  font-weight: bold;
}

/* Links */
#QuickView a {
  color: #007bff;
  text-decoration: none;
}

#QuickView a:hover {
  text-decoration: underline;
}

/* Responsiveness */
@media (max-width: 768px) {
  #QuickView .container {
      margin: 20px auto;
      padding: 15px;
  }

  #QuickView h5.h5 {
      font-size: 16px;
  }

  #QuickView p {
      font-size: 13px;
  }

  #QuickView .checklist ul li {
      font-size: 13px;
  }
}

/* Fade-in Animation */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(-10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}


/* Paragraph Styling */
.white-popup p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #555;
}

/* Checklist Styling */
.checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 16px;
  color: #555;
}

.checklist ul li::before {
  content: "✔"; /* Add a checkmark icon */
  position: absolute;
  left: 0;
  color: #007bff;
  font-size: 14px;
}

/* Close Animation */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: scale(0.95);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}

.col-lg-6-copyright
{
  width: 50%;
}



h2.ramu
{
  font-size: 28px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  line-height: 3rem;
}

.custom-underline2::after
{
  content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 5px;
    background-color: #e83a68;
    border-radius: 4px;
    /* margin-top: 15px; */
    bottom: -10px;
}
.custom-underline2 
{
  position: relative;
  display: inline-block;
  padding: 0 5px;
}
.custom-underline3::after
{
  content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 5px;
    background-color: #ff7061;
    border-radius: 4px;
    /* margin-top: 15px; */
    bottom: -10px;
}
.custom-underline3 
{
  position: relative;
  display: inline-block;
  padding: 0 5px;
}

 input[type="text"],
  input[type="tel"] {
    margin-top: 5px;
    margin-bottom: 15px;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 12px;
  }