
* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

nav {
    width: 100%;
    position: Fixed;
    max-width: 100vw;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    z-index: 100;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 40px;
}

.nav_buttons,
.login_buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav_buttons a,
.login_buttons a {
    font-family: "Urbanist", sans-serif;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.nav_buttons a:hover {
    background-color: #3367FB;
    color: white;
}

.login_buttons .register {
    background-color: #3367FB;
    color: white;
}

.login_buttons .login {
    background-color: #F7F8F8;
    color: #383A42;
}

.login_buttons .register:hover {
    background-color: rgb(23, 23, 102);
}

.login_buttons a:hover {
    background-color: rgb(117, 117, 117);
    color: white;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav_buttons,
    .login_buttons {
        flex-direction: column;
        width: 100%;
        display: none;
        text-align: center;
        margin-top: 10px;
    }

    .nav_buttons a,
    .login_buttons a {
        width: 100%;
        padding: 12px;
    }

    .nav_buttons.active,
    .login_buttons.active {
        display: flex;
    }
}

.main_box {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to bottom, #d6e1fe9f, white);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 60px;
  box-sizing: border-box;
}

/* Flex layout for hero section */
.main_box_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 2000px;
  width: 100%;
  gap: 60px; /* adds space between text and image */
}

/* LEFT CONTENT */
.left_content {
  flex: 1;
  min-width: 400px;
  padding-left: 20px;
}

/* RIGHT IMAGE */
.right_image {
  flex: 1;
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;     /* centers vertically */
}


.right_image img {
  max-width: 100%;
  width: auto;  /* fixed size that scales */
  height: auto;
  object-fit: contain; /* ensures image isn’t stretched */
}


/* Headline */
.caveat-font {
    justify-self: center    ;
  font-size: clamp(36px, 5vw, 78px);
  font-family: "Caveat", cursive;
  font-weight: bold;
  line-height: 1.2;
  text-align: left;
  position: relative;
}

/* Highlight text and images */
.highlight-text {
  position: relative;
  display: inline-block;
}

.highlight-img {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translate(-50%, 30%);
  width: 110%;
  z-index: -1;
  opacity: 0.95;
}

.arrow-img {
  position: absolute;
  top: 96%;
  left: 79%;
  transform: translate(-50%, 0);
  width: 80px;
  height: auto;
}

.affordable-img {
  position: absolute;
  top: 128%;
  left: 84%;
  transform: translate(-50%, 0);
  width: 180px;
  height: auto;
}

/* Paragraph */
.container2 {
  font-size: 1.1rem;
  font-family: "Urbanist", sans-serif;
  max-width: 600px;
  margin-top: 20px;
  text-align: left;
  line-height: 1.6;
}

/* Buttons */
.main_box_buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.main_box_buttons button {
  border-radius: 5px;
  padding: 12px 20px;
  font-family: "Urbanist", sans-serif;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
}

#sv {
  border: 1px solid #3367FB;
  background-color: transparent;
  color: #3367FB;
}

#sv:hover {
  background-color: #001029;
  color: #dbdbdb;
}

#db {
  background-color: #3367FB;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-family: "Urbanist", sans-serif;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none; /* remove underline for links */
  display: inline-block; /* make it behave like a button */
}

#db:hover {
  background-color: white;
  color: black;
}


/* RESPONSIVE DESIGN */
@media(max-width : 1800px){

    .arrow-img {
        display: none;
    }
    .affordable-img {
        display: none;
    }

}

/* Tablet & Medium screens — stack layout after 1100px */
@media (max-width: 1100px) {
  .main_box_header {
    flex-direction: column;         /* Stack top to bottom */
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 40px;                      /* spacing between text and image */
  }

  .left_content {
    text-align: center;
    padding-left: 0;                /* remove side padding */
  }

  .container2 {
    margin: 0 auto;
    text-align: center;
  }

  .main_box_buttons {
    justify-content: center;
  }

  .right_image {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .right_image img {
    width: 500px;
    max-width: 90%;
  }
}


/* Tablet */
@media (max-width: 1024px) {

    .arrow-img{
        display: none;
    }

    .affordable-img{
        display: none;
    }
  .main_box_header {
    display: flex;
    text-align: center;
  }

  .left_content {
    text-align: center;
  }

  .container2 {
    text-align: center;
    margin: 0 auto;
  }

  .main_box_buttons {
    justify-content: center;
  }

  .right_image img {
    max-width: auto;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .caveat-font {
    font-size: 8vw;
  }

  .arrow-img {
    width: 45px;
    top: 140%;
  }

  .affordable-img {
    width: 120px;
    top: 200%;
  }

  .main_box_buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .main_box_buttons button {
    width: 100%;
    max-width: 280px;
  }

  .right_image img {
    max-width: 320px;
  }
}





/* till here */


/* FROM HERE */


.partners {
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
    text-align: center;
}

.partners_text p {
    font-family: "Geist", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.partners_logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.partners_logo div {
    flex: 0 1 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partners_logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .partners_text p {
        font-size: 1.2rem;
    }

    .partners_logo {
        gap: 20px;
    }

    .partners_logo div {
        flex: 0 1 80px;
    }
}


/* TILL HERE */
/* FROM HERE */
.card_2 {
    width: 100%;
    background-color: rgba(231, 231, 231, 0.281);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    box-sizing: border-box;
    gap: 40px;
}

.card_2_image img {
    max-width: 100%;
    height: auto;
}

.card_2_text {
    max-width: 800px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.text_header {
    font-family: "Caveat", cursive;
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    margin-bottom: 20px;
    line-height: 1.2;
}

.card_2_vector {
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    max-width: 300px;
    z-index: -1;
}

.text_para {
    font-family: "Urbanist", sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 20px;
}

.card_2_buttons {
    font-family: "Urbanist", sans-serif;
    font-style: italic;
    margin-top: 20px;
}

.card_2_buttons a {
    color: blue;
    text-decoration: none;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .card_2 {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .text_header {
        font-size: 2rem;
        text-align: center;
    }

    .card_2_vector {
        top: -5px;
        left: 50%;
        transform: translateX(-50%);
        max-width: 200px;
    }

    .text_para {
        font-size: 0.95rem;
        text-align: center;
        padding: 0 10px;
    }

    .card_2_buttons {
        text-align: center;
    }

    .card_2_buttons a {
        display: inline-block;
        margin-top: 10px;
        font-size: 0.95rem;
    }
}


/* TILL HERE */
/* FROM HERE */

.card_3 {
    background-color: #f7f3fe;
    /* light purple */
}

.card_4 {
    background-color: #fff9e6;
    /* soft yellow */
}

.card_5 {
    background-color: #ffefe8;
    /* peachy orange */
}

.card_6 {
    background-color: #f4f7ff;
    /* pale blue */
}


.card_3,
.card_4,
.card_5,
.card_6 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    margin: 40px;
    border-radius: 30px;
    gap: 40px;
    box-sizing: border-box;
}

.card_3_text,
.card_4_text,
.card_5_text,
.card_6_text {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card_3_image img,
.card_4_image img,
.card_5_image img,
.card_6_image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text_para_3,
.text_para_4,
.text_para_5,
.text_para_6 {
    font-family: "Urbanist", sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 100%;
}

.text_header_3,
.text_header_4,
.text_header_5,
.text_header_6 {
    font-family: "Geist", sans-serif;
    font-size: 1.8rem;
}

.card_3_buttons button,
.card_4_buttons button,
.card_5_buttons button,
.card_6_buttons button {
    cursor: pointer;
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 30px;
    border-radius: 10px;
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.card_3_buttons button {
    border: 2px solid #7239EA;
    color: #7239EA;
}

.card_4_buttons button {
    border: 2px solid #f3bb1b;
    color: #f3bb1b;
}

.card_5_buttons button {
    border: 2px solid #f86f34;
    color: #f86f34;
}

.card_6_buttons button {
    border: 2px solid #3367fb;
    color: #3367fb;
}

.catalogue,
.catalogue_4,
.catalogue_5,
.catalogue_6 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.catalogue img,
.catalogue_4 img,
.catalogue_5 img,
.catalogue_6 img {
    max-width: 100px;
    height: auto;
}

@media (max-width: 768px) {

    .card_3,
    .card_4,
    .card_5,
    .card_6 {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 15px;
        gap: 30px;
    }

    .text_header_3,
    .text_header_4,
    .text_header_5,
    .text_header_6 {
        font-size: 1.5rem;
        text-align: center;
    }

    .text_para_3,
    .text_para_4,
    .text_para_5,
    .text_para_6 {
        font-size: 0.95rem;
        text-align: center;
    }

    .card_3_buttons,
    .card_4_buttons,
    .card_5_buttons,
    .card_6_buttons {
        text-align: center;
        width: 100%;
    }

    .card_3_buttons button,
    .card_4_buttons button,
    .card_5_buttons button,
    .card_6_buttons button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .catalogue,
    .catalogue_4,
    .catalogue_5,
    .catalogue_6 {
        justify-content: center;
    }
}



/* TILL HERE */
/* FROM HERE */

.card_7 {
    background-color: #f0f6f5;
}

.card_8 {
    background-color: #f3fcf6;
}

.card_9 {
    background-color: #fff2f5;
}

.card_10 {
    background-color: #fff2f5;
}

.card_9_10{
    display: flex;
}

@media (max-width: 1000px){
    .card_9_10{
        display: block;
    }
}

.card_7,
.card_8,
.card_9,
.card_10 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    margin: 40px;
    border-radius: 30px;
    gap: 40px;
    box-sizing: border-box;
}

.card_7_text,
.card_8_text,
.card_9_text,
.card_10_text {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card_7_image img,
.card_8_image img,
.card_9_image img,
.card_10_image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text_para_7,
.text_para_8,
.text_para_9,
.text_para_10 {
    font-family: "Urbanist", sans-serif;
    font-size: 1rem;
    line-height: 1.8;
}

.text_header_7,
.text_header_8,
.text_header_9,
.text_header_10 {
    font-family: "Geist", sans-serif;
    font-size: 1.8rem;
}

.card_7_buttons button,
.card_8_buttons button,
.card_9_buttons button,
.card_10_buttons button {
    cursor: pointer;
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 30px;
    border-radius: 10px;
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.card_7_buttons button {
    border: 2px solid #3d8d7a;
    color: #3d8d7a;
}

.card_8_buttons button {
    border: 2px solid #17c653;
    color: #17c653;
}

.card_9_buttons button,
.card_10_buttons button {
    border: 2px solid #f8285a;
    color: #f8285a;
}

.catalogue_7,
.catalogue_8,
.catalogue_9,
.catalogue_10 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.catalogue_7 img,
.catalogue_8 img,
.catalogue_9 img,
.catalogue_10 img {
    max-width: 100px;
    height: auto;
}

@media (max-width: 768px) {

    .card_7,
    .card_8,
    .card_9,
    .card_10 {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 15px;
        gap: 30px;
    }

    .text_header_7,
    .text_header_8,
    .text_header_9,
    .text_header_10 {
        font-size: 1.5rem;
        text-align: center;
    }

    .text_para_7,
    .text_para_8,
    .text_para_9,
    .text_para_10 {
        font-size: 0.95rem;
        text-align: center;
    }

    .card_7_buttons,
    .card_8_buttons,
    .card_9_buttons,
    .card_10_buttons {
        text-align: center;
        width: 100%;
    }

    .card_7_buttons button,
    .card_8_buttons button,
    .card_9_buttons button,
    .card_10_buttons button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .catalogue_7,
    .catalogue_8,
    .catalogue_9,
    .catalogue_10 {
        justify-content: center;
    }
}

/* TILL HERE */
/* FROM HERE */

/* === Common Card Styling === */
/* === Common Card Styling === */
.card_13 {
  width: 100%;
  box-sizing: border-box;
  padding: 80px 20px;
  background-color: #f8fbff;
  position: relative;
  text-align: center;
}

/* === Heading === */
.caveat-font-1 {
  font-size: 4.5vw;
  font-family: "Caveat", cursive;
  font-weight: bold;
  color: #1b1b1b;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

/* === Highlighted Text === */
.highlight-text {
  position: relative;
  display: inline-block;
  z-index: 1;
}

/* Background Image Behind "next level" */
.highlight-bg {
  position: absolute;
  bottom: 0; /* align with bottom of text */
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: auto;
  z-index: -1;
  opacity: 0.9;
  pointer-events: none;
}

/* === Grid layout (2 rows × 4 columns) === */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 0;
}

/* === Each box === */
.list2 {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.list2:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(51, 103, 251, 0.15);
}

.list2 img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

/* Text styles */
.list2 h4 {
  font-family: "Geist", sans-serif;
  font-size: 1.3rem;
  color: #3367fb;
  margin-bottom: 10px;
}

.list2 h5 {
  font-family: "Urbanist", sans-serif;
  font-size: 1rem;
  color: #6d6d6dd8;
  line-height: 1.5;
}

/* === Responsive Design === */
@media (max-width: 1024px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .caveat-font-1 {
    font-size: 6vw;
  }
  .highlight-bg {
    width: 130%;
  }
}

@media (max-width: 768px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .list2 img {
    width: 50px;
    height: 50px;
  }
  .caveat-font-1 {
    font-size: 7vw;
  }
  .highlight-bg {
    width: 140%;
  }
}

@media (max-width: 480px) {
  .logo-grid {
    grid-template-columns: 1fr;
  }
  .caveat-font-1 {
    font-size: 9vw;
  }
  .list2 {
    padding: 25px 20px;
  }
  .list2 h4 {
    font-size: 1.1rem;
  }
  .list2 h5 {
    font-size: 0.9rem;
  }
  .highlight-bg {
    width: 160%;
  }
}


/* =========================================================
   === COMMON CARD STYLING ===
   ========================================================= */
.card_11,
.card_12,
.card_13 {
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

/* =========================================================
   === CARD 11: STATISTICS SECTION (2 ROWS × 3 COLUMNS) ===
   ========================================================= */
.card_11 {
  padding: 60px 20px;
  background-color: #f0f6f5;
  text-align: center;
  position: relative;
}

/* Heading */
.caveat-font-1 {
  font-size: 4.5vw;
  font-family: "Caveat", cursive;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

/* Background Image */
.back-img-1 img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 300px;
  z-index: 0;
  opacity: 0.9;
}

/* Grid layout */
.number-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 30px 0;
  max-width: 1100px;
  margin: 0 auto;
}

/* Each box */
.list1 {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.list1:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(51, 103, 251, 0.15);
}

/* Text styles */
.list1 h3 {
  font-family: "Geist", sans-serif;
  font-size: 2rem;
  color: #3367fb;
  margin-bottom: 10px;
}

.list1 h4 {
  font-family: "Geist", sans-serif;
  font-size: 1.3rem;
  color: #4b4b4b;
  margin-bottom: 5px;
}

.list1 h5 {
  font-family: "Urbanist", sans-serif;
  font-size: 1rem;
  color: #6d6d6dd8;
  margin-top: 5px;
  line-height: 1.4;
}

/* Responsive for Card 11 */
@media (max-width: 992px) {
  .number-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .number-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   === CARD 12: IMAGE + TEXT OVERLAY SECTION (Responsive) ===
   ========================================================= */
/* ===== CARD 11 HEADING SECTION ===== */
.container3 {
  position: relative;
  width: 100%;
  text-align: center;
}

.caveat-font-1 {
  font-family: "Caveat", cursive;
  font-weight: bold;
  color: #000;
  position: relative;
  display: inline-block;
  line-height: 1.2;
  z-index: 2;

  /* Responsive font sizing */
  font-size: clamp(40px, 5.2vw, 78px);
}

/* Highlight behind “better” */
.highlight-text-1 {
  position: relative;
  display: inline-block;
}

.highlight-img-1 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 25%);
  width: 120%;
  height: auto;
  z-index: -1;
  opacity: 0.9;
}

/* --- Additional fine-tuning for specific breakpoints --- */

/* Medium screens (like 1417px width and below) */
@media (max-width: 1450px) {
  .caveat-font-1 {
    font-size: clamp(36px, 4.5vw, 65px);
  }
}


/* Tablets */
@media (max-width: 992px) {
  .caveat-font-1 {
    font-size: clamp(32px, 5vw, 58px);
  }
}

/* Mobile devices */
@media (max-width: 600px) {
  .caveat-font-1 {
    font-size: clamp(28px, 6vw, 46px);
    line-height: 1.1;
  }
}


/* ===== Responsive Tweaks ===== */
@media (max-width: 992px) {
  .highlight-img-1 {
    width: 130%;
    transform: translate(-50%, 30%);
  }
}

@media (max-width: 600px) {
  .highlight-img-1 {
    width: 150%;
    transform: translate(-50%, 35%);
  }
}


.integration-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* space between images */
  width: 100%;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
}

.integration-images img {
  width: 48%; /* show two side by side */
  max-width: 600px;
  border-radius: 10px;
}

/* 📱 Responsive for Mobile */
@media (max-width: 768px) {
  .integration-images {
    flex-direction: column;
  }

  .integration-images img {
    width: 90%; /* take most of the screen width */
  }
}

/* =========================================================
   === CARD 13: FEATURE GRID (2 ROWS × 4 COLUMNS) ===
   ========================================================= */
.card_13 {
  width: 100%;
  box-sizing: border-box;
  padding: 80px 20px;
  background-color: #fafafa;
  position: relative;
  text-align: center;
}

/* Heading */
.card_13 .caveat-font-1 {
  font-size: 4.5vw;
  font-family: "Caveat", cursive;
  font-weight: bold;
  color: #1b1b1b;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

/* Background Image */
.card_13 .back-img-1 img {
  position: absolute;
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 300px;
  z-index: 0;
  opacity: 0.9;
}

/* Grid layout (2x4) */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 0;
}

/* Each box */
.list2 {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.list2:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(51, 103, 251, 0.15);
}

/* Icon */
.list2 img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

/* Text styles */
.list2 h4 {
  font-family: "Geist", sans-serif;
  font-size: 1.3rem;
  color: #3367fb;
  margin-bottom: 10px;
}

.list2 h5 {
  font-family: "Urbanist", sans-serif;
  font-size: 1rem;
  color: #6d6d6dd8;
  line-height: 1.5;
}

/* Responsive for Card 13 */
@media (max-width: 1024px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .card_13 .caveat-font-1 {
    font-size: 6vw;
  }
}

@media (max-width: 768px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .list2 img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .card_13 .caveat-font-1 {
    font-size: 8vw;
  }

  .list2 {
    padding: 25px 20px;
  }

  .list2 h4 {
    font-size: 1.1rem;
  }

  .list2 h5 {
    font-size: 0.9rem;
  }
}

/* TILL HERE */
/* FROM HERE */
.card_14 {
  background-color: white;
  position: relative;
  padding: 60px 0;
}

.div-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.text-container {
  background-color: #f4f7ff;
  border-radius: 24px;
  text-align: center;
  width: 85vw;
  padding: 60px 80px;
  overflow: hidden;
}

.text-container h1 {
  font-family: "Caveat", cursive;
  font-size: clamp(36px, 5vw, 64px);
  text-align: start;
  font-weight: bold;
  color: #000;
  margin-bottom: 40px;
}

.button-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 40px;
}

.button1 {
  background-color: #fff;
  border: 2px solid #ccc;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button1.active,
.button1:hover {
  background-color: #002db3;
  color: white;
  border-color: #002db3;
}

.text-image {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.place1 {
  flex: 1 1 45%;
  text-align: left;
}

.place1 h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #000;
}

.place1 h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 16px;
}

.place1 ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.place1 li {
  font-size: 16px;
  margin-bottom: 8px;
}

.place2 {
  flex: 1 1 45%;
  text-align: center;
}

.place2 img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
}

.explore-btn {
  background-color: #002db3;
  color: #fff;
  padding: 10px 24px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
}

.explore-btn:hover {
  background-color: #001c80;
}

/* Hide inactive tabs */
.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .text-image {
    flex-direction: column;
  }
  .place1, .place2 {
    flex: 1 1 100%;
    text-align: center;
  }
  .place1 h2 {
    font-size: 24px;
  }
  .place1 h4 {
    font-size: 16px;
  }
}

.button-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #c9d8ff;
    border-radius: 14px;
    background-color: #f8faff;
    padding: 5px;
    margin: 30px 0;
    overflow-x: auto;
}

.button1 {
    flex: 1;
    border: none;
    background-color: transparent;
    color: #333;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    padding: 14px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.button1:hover,
.button1.active {
    background-color: #3367fb;
    color: #fff;
}

.text-image {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
    flex-wrap: wrap;
}

.place1 {
    flex: 1;
    text-align: left;
}

.place1 h2 {
    font-family: "Geist", sans-serif;
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.place1 h4 {
    font-family: "Urbanist", sans-serif;
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
}

.place1 ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.place1 li {
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    color: #333;
    margin: 5px 0;
}

.explore-btn {
    background-color: transparent;
    color: #3367fb;
    font-family: "Urbanist", sans-serif;
    border: 1px solid #3367fb;
    padding: 10px 18px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.explore-btn:hover {
    background-color: #1d4fd7;
}

.place2 {
    flex: 1;
    display: flex;
    justify-content: center;
}

.place2 img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
}

.card_15 {
    margin-top: 60px;
    background-color: #FAFAFA;
    padding: 80px 100px;
    text-align: center;
}

.card_15 h1 {
    font-family: "Caveat", cursive;
    font-size: 64px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.card_15 .highlight {
    color: #1a1a1a;
    position: relative;
}

.card_15 .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 12px;
    background-color: #ffb703;
    opacity: 0.6;
    border-radius: 6px;
    z-index: -1;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
}

.story-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.story-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.story-content {
    padding: 20px;
    text-align: left;
}

.story-content h3 {
    font-family: "Geist", sans-serif;
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 8px;
}

.story-content p {
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.5;
}

.story-content a {
    font-family: "Urbanist", sans-serif;
    font-size: 14px;
    color: #3367fb;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.story-content a:hover {
    text-decoration: underline;
}

.title-with-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
}

.title-with-arrows h1 {
    margin: 0;
    font-family: "Caveat", cursive;
    font-size: 64px;
    font-weight: 700;
    color: #1a1a1a;
}

.arrow {
    width: 70px;
    height: auto;
    padding-top: 70px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.arrow:hover {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .text-container {
        padding: 40px 30px;
    }

    .text-container h1,
    .card_15 h1,
    .title-with-arrows h1 {
        font-size: 48px;
        text-align: center;
    }

    .button-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .button1 {
        flex: none;
        padding: 10px 20px;
        font-size: 12px;
    }

    .text-image {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .place1 {
        text-align: center;
    }

    .place1 h2 {
        font-size: 24px;
    }

    .place1 h4 {
        font-size: 16px;
    }

    .place1 ul {
        text-align: left;
        display: inline-block;
    }

    .explore-btn {
        width: 100%;
        max-width: 300px;
    }

    .place2 img {
        max-width: 100%;
    }

    .card_15 {
        padding: 40px 20px;
    }

    .title-with-arrows {
        gap: 20px;
    }

    .arrow {
        padding-top: 0;
        width: 50px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 20px;
    }
}

@media (max-width: 600px) {

    .text-container h1,
    .card_15 h1,
    .title-with-arrows h1 {
        font-size: 36px;
    }

    .button1 {
        font-size: 7px;
    }

    .place1 h2 {
        font-size: 20px;
    }

    .place1 h4 {
        font-size: 14px;
    }

    .place1 li {
        font-size: 14px;
    }

    .explore-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .story-card img {
        height: 160px;
    }

    .story-content h3 {
        font-size: 16px;
    }

    .story-content p {
        font-size: 14px;
    }

    .story-content a {
        font-size: 13px;
    }
}


/* TILL HERE */
/* FROM HERE */
/* ===== FAQ SECTION ===== */
.card_16 {
  position: relative;
  margin-top: 70px;
  background-color: #f4f7ff;
  padding: 60px 40px;
  box-sizing: border-box;
}

.partition {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.question-div1 {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: left;
}

.question-div1 img {
  width: 100%;
  max-width: 54px;
  margin-bottom: 20px;
}

.question-div1 h1 {
  font-size: 60px;
  font-family: "Caveat", cursive;
  color: #1b1b1b;
  line-height: 1.1;
  margin-bottom: 20px;
}

.question-div1 h3 {
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  color: #555;
  margin-bottom: 25px;
}

.question-div1 button {
  cursor: pointer;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 10px;
  border: 2px solid #3367fb;
  background-color: transparent;
  color: #3367fb;
  transition: all 0.3s ease;
}

.question-div1 button:hover {
  background-color: #3367fb;
  color: white;
}

/* RIGHT SIDE FAQ */
.question-div2 {
  flex: 1.2;
  min-width: 350px;
  display: flex;
  flex-direction: column;
}

/* FAQ Item */
.question1 {
  background-color: #fff;
  border-radius: 15px;
  margin: 10px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.question-header {
  display: flex;
  align-items: center;
  padding: 20px;
  cursor: pointer;
}

.question-header h4 {
  font-family: "Geist", sans-serif;
  font-size: 18px;
  color: #1b1b1b;
  margin: 0;
}

.question-header img {
  width: 28px;
  height: 28px;
  margin-right: 15px;
  transition: transform 0.3s ease;
}

/* Hidden Answer */
.answer {
  max-height: 0;
  overflow: hidden;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  color: #555;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

/* Active (when open) */
.question1.active .answer {
  max-height: 200px;
  padding: 10px 20px 20px;
}

.question1.active .toggle-icon {
  content: url("./resources/reduce_logo.png");
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .partition {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .question-div1 {
    text-align: center;
  }

  .question-div1 h1 {
    font-size: 45px;
  }

  .question-div1 h3 {
    font-size: 16px;
  }

  .question-div1 img {
    display: none;
  }

  .question-div2 {
    width: 100%;
    max-width: 650px;
  }

  .question-header h4 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .question-div1 h1 {
    font-size: 36px;
  }
  .question-header h4 {
    font-size: 15px;
  }
}


/* ====== Base Styles ====== */
.card_17 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background-color: #fff;
  overflow: hidden;
}

.text-div {
  position: relative;
  text-align: center;
  display: inline-block;
}

.text-div h2 {
  position: relative;
  font-family: "Caveat", cursive;
  font-size: 58px;
  color: #1b1b1b;
  line-height: 1.1;
  z-index: 2;
  display: inline-block;
  margin: 0;
  padding: 0 20px;
}

.text-div img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 550px;
  max-width: 95%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.9;
}

/* ====== Large Tablets (≤1024px) ====== */
@media (max-width: 1024px) {
  .card_17 {
    padding: 70px 15px;
  }

  .text-div h2 {
    font-size: 50px;
  }

  .text-div img {
    width: 480px;
  }
}

/* ====== Tablets (≤768px) ====== */
@media (max-width: 768px) {
  .text-div h2 {
    font-size: 42px;
  }

  .text-div img {
    width: 400px;
    top: 52%;
  }
}

/* ====== Mobile (≤480px) ====== */
@media (max-width: 480px) {
  .card_17 {
    padding: 60px 10px;
  }

  .text-div h2 {
    font-size: 32px;
    padding: 0 10px;
  }

  .text-div img {
    width: 300px;
    top: 55%;
  }
}

/* ====== Small Mobile (≤360px) ====== */
@media (max-width: 360px) {
  .text-div h2 {
    font-size: 28px;
  }

  .text-div img {
    width: 260px;
  }
}


.card-17-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.card-17-list img{
    width: 200px;
}

/* same image as above one */
.card_18 {
    position: relative;
    justify-self: center;
    padding: 40px;
}

.card_18 img {
    display: block;
    width: 100%;
    height: auto;
}

.div-frame2 {
    position: relative;
}
.div-frame1 {
    position: relative;
}

/* ================= Base Style (Desktop) ================= */
/* ====== Container ====== */
.div-frame1 {
  position: relative;
  width: 95%;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.frame-bg {
  width: 100%;
  height: auto;
  display: block;
}

/* ====== Flex Content ====== */
.frame1-content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 30px 40px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.frame1-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 50%;
  color: white;
}

.frame1-text h3 {
  font-size: 60px;
  font-family: "Caveat", cursive;
  font-weight: 700;
  color: white;
}

.frame1-text h5 {
  margin-top: 5px;
  margin-bottom: 23px;
  font-size: 16px;
  font-family: "Figtree", sans-serif;
  color: #f5f5f5;
}

.frame1-text button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: #3367fb;
  border: none;
  cursor: pointer;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* === Image Always at Bottom === */
.frame1-image {
  position: absolute;
  bottom: 0;
  right: 20px;
  display: flex;
  justify-content: flex-end;
}

.frame1-image img {
  max-width: 536px;
  height: auto;
}

/* ================= RESPONSIVE ================= */

/* --- 1200px --- */
@media (max-width: 1200px) {
  .frame1-text h3 { font-size: 45px; }
  .frame1-text h5 { font-size: 14px; }
  .frame1-text button { font-size: 14px; padding: 8px 18px; }
  .frame1-image img { max-width: 350px; }
}

/* --- 992px --- */
@media (max-width: 992px) {
  .frame1-content { padding: 25px; }
  .frame1-text { max-width: 55%; }
  .frame1-text h3 { font-size: 35px; }
  .frame1-text h5 { font-size: 12px; }
  .frame1-text button { font-size: 12px; padding: 6px 14px; }
  .frame1-image img { max-width: 300px; }
}

/* --- 833px AND BELOW --- */
@media (max-width: 833px) {
  .div-frame1 {
    position: relative;
    height: auto;
    overflow: hidden;
  }

  .frame-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  .frame1-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* text top, image bottom */
    align-items: center;
    text-align: center;
    width: 100%;
    min-height: 700px; /* full height section feel */
    padding: 70px 25px 40px 0px; /* top, sides, bottom */
    box-sizing: border-box;
  }

  .frame1-text {
    max-width: 90%;
    align-items: center;
    justify-content: flex-start;
  }

  .frame1-text h3 {
    font-size: 42px; /* bigger on medium screen */
    font-weight: 700;
    line-height: 1.3;
  }

  .frame1-text h5 {
    font-size: 17px;
  }

  .frame1-text button {
    font-size: 17px;
    padding: 10px 24px;
  }

  .frame1-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
  }

  .frame1-image img {
    max-width: 535px;
    width: 100%;
    height: auto;
  }
}

/* --- 600px AND BELOW --- */
@media (max-width: 600px) {
  .frame1-content {
    padding: 60px 20px 30px 20px;
    min-height: 450px;
    gap: 35px;
  }

  .frame1-text h3 {
    font-size: 32px;
  }

  .frame1-text h5 {
    font-size: 15px;
  }

  .frame1-text button {
    font-size: 15px;
    padding: 8px 18px;
  }

  .frame1-image img {
    max-width: 320px;
  }
}

/* --- 450px AND BELOW --- */
@media (max-width: 450px) {
  .frame1-content {
    padding: 50px 15px 20px 15px;
    gap: 25px;
  }

  .frame1-text h3 {
    font-size: 26px;
  }

  .frame1-text h5 {
    font-size: 13px;
  }

  .frame1-text button {
    font-size: 13px;
    padding: 7px 15px;
  }

  .frame1-image img {
    max-width: 340px;
  }
}

/* --- 350px AND BELOW --- */
@media (max-width: 350px) {
  .frame1-content {
    padding: 40px 10px 15px 10px;
    gap: 20px;
  }

  .frame1-text h3 {
    font-size: 22px;
  }

  .frame1-text h5 {
    font-size: 12px;
  }

  .frame1-text button {
    font-size: 12px;
    padding: 6px 13px;
  }

  .frame1-image img {
    max-width: 210px;
  }
}




/* ================= Base Style (Desktop) ================= */
/* ====== Container ====== */
.div-frame2 {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.div-frame2 .frame-bg {
  width: 100%;
  height: auto;
  display: block;
}

/* ====== Flex Content ====== */
.frame2-content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 30px 40px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.frame2-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 50%;
  color: white;
}

.frame2-text h3 {
  font-size: 60px;
  font-family: "Caveat", cursive;
  font-weight: 700;
  color: white;
}

.frame2-text h5 {
  margin-top: 5px;
  margin-bottom: 23px;
  font-size: 16px;
  font-family: "Figtree", sans-serif;
  color: #f5f5f5;
}

.frame2-text button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: #3367fb;
  border: none;
  cursor: pointer;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* === Image Always at Bottom === */
.frame2-image {
  position: absolute;
  bottom: 0;
  right: 20px;
  display: flex;
  justify-content: flex-end;
}

.frame2-image img {
  max-width: 500px;
  height: auto;
}

/* ================= RESPONSIVE ================= */

/* --- 1200px --- */
@media (max-width: 1200px) {
  .frame2-text h3 { font-size: 45px; }
  .frame2-text h5 { font-size: 14px; }
  .frame2-text button { font-size: 14px; padding: 8px 18px; }
  .frame2-image img { max-width: 350px; }
}

/* --- 992px --- */
@media (max-width: 992px) {
  .frame2-content { padding: 25px; }
  .frame2-text { max-width: 55%; }
  .frame2-text h3 { font-size: 35px; }
  .frame2-text h5 { font-size: 12px; }
  .frame2-text button { font-size: 12px; padding: 6px 14px; }
  .frame2-image img { max-width: 300px; }
}

/* --- 833px AND BELOW --- */
@media (max-width: 833px) {
  .div-frame2 {
    position: relative;
    height: auto;
    overflow: hidden;
  }

  .div-frame2 .frame-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  .frame2-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    width: 100%;
    min-height: 700px;
    padding: 70px 25px 40px 0px;
    box-sizing: border-box;
  }

  .frame2-text {
    max-width: 90%;
    align-items: center;
    justify-content: flex-start;
  }

  .frame2-text h3 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
  }

  .frame2-text h5 {
    font-size: 17px;
  }

  .frame2-text button {
    font-size: 17px;
    padding: 10px 24px;
  }

  .frame2-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
  }

  .frame2-image img {
    max-width: 535px;
    width: 100%;
    height: auto;
  }
}

/* --- 600px AND BELOW --- */
@media (max-width: 600px) {
  .frame2-content {
    padding: 60px 20px 30px 20px;
    min-height: 450px;
    gap: 35px;
  }

  .frame2-text h3 {
    font-size: 32px;
  }

  .frame2-text h5 {
    font-size: 15px;
  }

  .frame2-text button {
    font-size: 15px;
    padding: 8px 18px;
  }

  .frame2-image img {
    max-width: 320px;
  }
}

/* --- 450px AND BELOW --- */
@media (max-width: 450px) {
  .frame2-content {
    padding: 50px 15px 20px 15px;
    gap: 25px;
  }

  .frame2-text h3 {
    font-size: 26px;
  }

  .frame2-text h5 {
    font-size: 13px;
  }

  .frame2-text button {
    font-size: 13px;
    padding: 7px 15px;
  }

  .frame2-image img {
    max-width: 340px;
  }
}

/* --- 350px AND BELOW --- */
@media (max-width: 350px) {
  .frame2-content {
    padding: 40px 10px 15px 10px;
    gap: 20px;
  }

  .frame2-text h3 {
    font-size: 22px;
  }

  .frame2-text h5 {
    font-size: 12px;
  }

  .frame2-text button {
    font-size: 12px;
    padding: 6px 13px;
  }

  .frame2-image img {
    max-width: 210px;
  }
}


/* TILL HERE */
/* FROM HERE */

/* ==================== CARD_19 - Get in touch with us ==================== */
.card_19 {
    background-color: transparent;
    padding: 40px 20px;
    text-align: center;
    margin: 40px auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.card_19::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('./resources/card19-bg-pattern.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.card_19 h2 {
    font-family: 'Caveat', cursive;
    font-size: 48px;
    font-weight: 700;
    color: #0f0f0f;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.card_19 h4 {
    font-family: 'Urbanist', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #535353;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.card_19 button {
    background: #3367fb;
    color: #ffffff;
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 20px rgba(60, 0, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.card_19 button:hover {
    background: #ffffff;
    color: #3367fb;
    transform: translateY(-4px);
    box-shadow: 0 16px 30px #0f0f0f4d;
}

.card_19 button:active {
    transform: translateY(-2px);
}

/* Arrow icon inside button (agar alag se add karna ho toh) */
.card_19 button::after {
    content: '→';
    font-size: 24px;
    font-weight: bold;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .card_19 {
        margin: 60px 20px;
        padding: 60px 20px;
        border-radius: 20px;
    }

    .card_19 h2 {
        font-size: 40px;
    }

    .card_19 h4 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .card_19 h2 {
        font-size: 36px;
    }

    .card_19 h4 {
        font-size: 17px;
        padding: 0 10px;
    }

    .card_19 button {
        padding: 14px 32px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .card_19 {
        margin: 40px 15px;
        padding: 50px 15px;
    }

    .card_19 h2 {
        font-size: 32px;
    }

    .card_19 h4 {
        font-size: 16px;
        line-height: 1.7;
    }

    .card_19 button {
        padding: 12px 28px;
        font-size: 16px;
        width: 80%;
        justify-content: center;
    }
}

/* TILL HERE */
/* FROM HERE */
.card_20 {
  background-color: #fff;
  padding: 60px 40px;
  font-family: "Geist", sans-serif;
}

.card-20-partition {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

/* ---------- LEFT SIDE ---------- */
.div-partition1 {
  flex: 1;
  min-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.part1, .part2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  gap: 30px;
}

.part1 img, .part2 img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.part1 h4, .part2 h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.part1 p, .part2 p {
  color: #555;
  font-size: 0.9rem;
  margin: 0;
}

/* ---------- RIGHT SIDE ---------- */
.div-partition2 {
  flex: 1.3;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: flex-start;
}

.address-section {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 0.7;
}

.address-section img {
  width: 45px;
  height: 45px;
  margin-bottom: 10px;
}

.address-section h4 {
  margin: 0;
  font-size: 1.2rem;
}

.address-section p {
  margin: 5px 0 0;
  color: #555;
  line-height: 1.5;
  font-size: 0.9rem;
}

.map-img {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.map-img iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 20px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .card-20-partition {
    flex-direction: column;
  }

  .div-partition1, .div-partition2 {
    width: 100%;
  }

  .div-partition2 {
    flex-direction: column;
  }

  .address-section {
    flex-direction: column;
    width: 100%;
  }

  .map-img {
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 600px) {
  .part1, .part2 {
    flex-direction: column;
    text-align: center;
  }

  .div-partition2 {
    flex-direction: column;
    align-items: center;
  }

  .address-section {
    align-items: center;
  }

  .map-img iframe {
    min-height: 250px;
  }
}


.card_21 {
    background-color: #F4F7FF;
    padding: 70px 100px;
    font-family: "Geist", sans-serif;
    color: #333;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1.3;
    min-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 160px;
    height: auto;
}

.footer-logo h2 {
    font-family: "Urbanist", sans-serif;
    font-size: 28px;
    margin: 0;
}

.footer-logo p {
    font-family: "Urbanist", sans-serif;
    font-size: 12px;
    margin: 0;
}

.footer-desc {
    font-family: "Urbanist", sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 20px 0;
}

.address-section {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.address h4 {
    font-family: "Urbanist", sans-serif;
    margin-bottom: 8px;
    font-size: 16px;
}

.address p {
    font-family: "Urbanist", sans-serif;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.address a {
    font-family: "Urbanist", sans-serif;
    color: #0070f3;
    text-decoration: none;
}

.newsletter {
    margin-top: 30px;
}

.newsletter-box {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.newsletter-box input {
    padding: 10px 15px;
    font-family: "Urbanist", sans-serif;
    border: 1px solid #ccc;
    border-radius: 6px;
    flex: 1;
    font-size: 14px;
}

.newsletter-box button {
    font-family: "Urbanist", sans-serif;
    background-color: #1e50ff;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
}

.newsletter-box button:hover {
    background-color: #003bcc;
}

/* RIGHT SECTION */
.footer-right {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex: 1;
    flex-wrap: wrap;
}

.footer-right h4 {
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-right p {
    font-family: "Urbanist", sans-serif;
    font-size: 14px;
    color: #555;
    margin: 6px 0;
    cursor: pointer;
}

.footer-right p:hover {
    color: #1e50ff;
}

/* BOTTOM SECTION */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #d3d8e0;
    margin-top: 40px;
    padding-top: 15px;
}

.footer-bottom p {
    font-size: 14px;
    font-family: "Urbanist", sans-serif;
    color: #555;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons img {
    width: 22px;
    height: 22px;
    cursor: pointer;
}

@media (max-width: 1024px) {

    .card-20-partition,
    .part1,
    .part2,
    .part3,
    .div-partition2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .map-img img {
        width: 100%;
        height: auto;
        max-height: 300px;
    }

    .card_21 {
        padding: 50px 30px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        flex: 1 1 100%;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo h2 {
        font-size: 24px;
        text-align: center;
    }

    .footer-desc {
        text-align: center;
    }

    .address-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .newsletter-box {
        flex-direction: column;
        align-items: stretch;
    }

    /* .newsletter-box input,
  .newsletter-box button {
    width: 100%;
  } */

    .footer-right {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-right h4,
    .footer-right p {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .card_20 {
        padding: 30px 20px;
    }

    .card-20-part1 h4,
    .card-20-part2 h4,
    .card-20-part3 h4,
    .card-20-part4 h4 {
        font-size: 18px;
    }

    .card-20-part1 p,
    .card-20-part2 p {
        font-size: 14px;
    }

    .map-img img {
        height: auto;
        max-height: 200px;
    }

    .card_21 {
        padding: 40px 20px;
    }

    .footer-logo img {
        width: 120px;
    }

    .footer-logo h2 {
        font-size: 20px;
    }

    .footer-desc {
        font-size: 13px;
    }

    .address h4 {
        font-size: 14px;
    }

    .address p {
        font-size: 12px;
    }

    .newsletter-box input,
    .newsletter-box button {
        font-size: 13px;
        padding: 8px 12px;
    }

    .footer-right h4 {
        font-size: 14px;
    }

    .footer-right p {
        font-size: 13px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .social-icons img {
        width: 20px;
        height: 20px;
    }
}

.map-img {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.map-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}