
html{
  scroll-behavior: smooth;
}
.container-fluid a{
    color: #017374;
    font-size :17px;
    font-weight:bold;
     
    font-family:"Poppins", Sans-serif;
}

.get-started-btn  {
  display:inline-block;
  padding:12px 28px;
  font-size:18px;
  font-weight:600;
  color:#ffffff !important;  
  background-color:#017374;
  border-radius: 10px;
  text-decoration:none;
  transition:0.3s ease;
}
.container-fluid .active a{
   color: #017374;
    font-size:15px;
    font-weight:bold;
    font-family:"Poppins";
    
}
.get-started-btn:hover {
  opacity:0.85;
  transform: translateY(-2px);
}
.navbar-brand img{
  width:150px ;
  height: 100px;
}
.navbar{
  border-bottom: 0.5px solid;
  border-bottom-color: #017374;
}

.hero-section {
  display: flex;
  justify-content: center;
  padding: 80px 0;
  border-bottom: 0.5px solid grey;
  height: 800px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center; /* center both sides */
  gap: 100px;
  width: 100%;
  padding: 0 20px; /* prevent edges */
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 70px;
  font-weight: 800;
  line-height: 1.1;
  font-family: "Poppins", sans-serif;
}

.hero-text h1 span {
  color: #017374;
}

.hero-text p {
  margin-top: 25px;
  font-size: 25px;
  color: #333;
  font-family: "Poppins", sans-serif;
}

.hero-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 35px;
  background-color: #017374;
  color: white;
  border-radius: 8px;
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
}

.hero-image img {
  width: 480px;
  height: auto;
  border-top-right-radius: 50%;
  border-bottom-left-radius: 50%;
  gap: 50px;
  
}

/* animated word */
.animated-word {
  position: relative;
  display: inline-block;
  color: #017374;
  overflow: hidden;
}

.animated-word::after {
  content: "";
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 2;
  animation: swipe 5s infinite;
}


       /* ======= TABLET (max-width: 992px) ======= */
@media (max-width: 992px) {
  
  .hero-container {
    gap: 25px;
  }

  .hero-text h1 {
    font-size: 45px;
  }

  .hero-text p {
    font-size: 18px;
  }

  
  .hero-image img {
    width: 260px;
  }
}



/* ======= MOBILE (max-width: 768px) ======= */
@media (max-width: 768px) {

  .hero-container {
    flex-direction: column; /* stack vertically */
    text-align: center;
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 38px;
    line-height: 1.2;
  }

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

  .hero-btn {
    font-size: 16px;
    padding: 10px 28px;
  }

 
  .hero-image img {
    width: 230px;
  }
}



/* ======= SMALL MOBILE (max-width: 480px) ======= */
@media (max-width: 480px) {

  .hero-text h1 {
    font-size: 30px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .hero-btn {
    font-size: 14px;
    padding: 8px 22px;
  }

 
  .hero-image img {
    width: 200px;
  }
}




.brands-section {
  padding: 80px 20px;
  background-color: #fefefe;
  font-family: Arial, sans-serif;
  color: #111;
  border-bottom: 0.5px solid grey;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left; /* changed from center to left */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-label {
  display: inline-block;
  background-color: #e0f2f2;
  color: #017374;
  padding: 5px 12px;
  border-radius: 4px;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 14px;
}

h2 {
  font-size: 36px;
  margin: 10px 0;
  font-weight: bold;
}

h2 .highlight {
  color: #017374;
}

.section-subtitle {
  font-size: 18px;
  max-width: 700px;
  margin: 0 0 50px 0; /* removed auto centering */
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
  text-align: left;
}

.brand-item {
  flex: 1 1 30%;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
 
}

.brand-item h3 {
  color: #017374;
  margin-bottom: 15px;
  font-size: 40px;
  font-weight: bold;
}

.brand-item p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

/* Responsive */
@media (max-width: 900px) {
  .brands-grid {
    flex-direction: column;
    gap: 30px;
  }

  .brand-item {
    flex: 1 1 100%;
  }
}                

@keyframes swipe {
  0% { right: -100%; }
  20% { right: 0%; }
  50% { right: 100%; }
  100% { right: 100%; }
}

/* ===================== TABLET (≤ 992px) ===================== */

@media (max-width: 992px) {

  .brand-item {
    flex: 1 1 45%; /* 2 items per row */
  }

  h2 {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .brand-item h3 {
    font-size: 32px;
  }

  .brand-item p {
    font-size: 16px;
  }
}


/* ===================== MOBILE (≤ 768px) ===================== */

@media (max-width: 768px) {

  .brands-section {
    padding: 60px 20px;
  }

  .container {
    text-align: center; /* center on mobile for clean UI */
  }

  .brands-grid {
    justify-content: center;
  }

  .brand-item {
    flex: 1 1 100%; /* single column */
  }

  h2 {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .brand-item h3 {
    font-size: 28px;
  }

  .brand-item p {
    font-size: 15px;
  }
}


/* ===================== SMALL MOBILE (≤ 480px) ===================== */

@media (max-width: 480px) {

  h2 {
    font-size: 24px;
  }

  .brand-item {
    padding: 18px;
  }

  .brand-item h3 {
    font-size: 22px;
  }

  .brand-item p {
    font-size: 14px;
  }

  .section-subtitle {
    font-size: 14px;
  }
}
.container-fluids {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-bottom: 0.5px solid grey;
    height: auto; /* fixed height removed */
    min-height: 600px; /* optional */
}

.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    margin-right: 20px;
}

.logo-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 5px;
}

.main-content {
    max-width: 700px;
    flex: 1;
    padding-left: 20px;
    text-align: center;
}

.main-content h1 {
    font-size: 36px;
    color: #006F6A;
    font-weight: bold;
}

.main-content p {
    font-size: 22px;
    color: #333333;
}

/* NEW UPDATED DROPDOWN */
.dropdown-new {
    width: 100%;
    margin-top: 20px;
}

.dropdown-new-btn {
    background-color: #017374;
    color: white;
    padding: 14px 20px;
    width: 100%;
    font-size: 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-new-btn:hover {
    background-color: #026f72;
}

.arrow-icon {
    transition: 0.3s ease;
}

/* Smooth dropdown panel */
.dropdown-new-content {
    max-height: 0;
    overflow: hidden;
    background: #f9f9f9;
    border-radius: 6px;
    border: 1px solid #ddd;
    margin-top: 6px;
    padding: 0 16px;
    transition: max-height 0.4s ease;
}

.dropdown-new-content p {
    font-size: 18px;
    padding: 14px 0;
}




@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ------------------------ */
/* RESPONSIVE DROPDOWN FIX  */
/* ------------------------ */
@media (max-width: 768px) {
    .dropdown-new-btn {
        font-size: 16px;
        padding: 10px 14px;
    }

    .dropdown-new-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .dropdown-new-btn {
        font-size: 14px;
        padding: 8px 12px;
    }

    .dropdown-new-content p {
        font-size: 12px;
        padding: 10px 0;
    }
}

/* Media Queries */
@media (max-width: 1024px) {
    .container-fluids {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .logo-container {
        max-width: 150px;
        margin-bottom: 20px;
    }

    .main-content {
        max-width: 90%;
        padding-left: 0;
    }

    .main-content h1 { font-size: 28px; }
    .main-content p { font-size: 14px; }
    .main-content button { padding: 8px 16px; font-size: 14px; }
}

@media (max-width: 768px) {
    .logo-container { max-width: 120px; margin-bottom: 15px; }
    .main-content { max-width: 100%; padding-left: 0; text-align: center; }
    .main-content h1 { font-size: 24px; }
    .main-content p { font-size: 14px; }
    .main-content button { padding: 8px 16px; font-size: 14px; }
}

@media (max-width: 480px) {
    .logo-container { max-width: 100px; margin-bottom: 10px; }
    .main-content h1 { font-size: 20px; }
    .main-content p { font-size: 12px; }
    .main-content button { padding: 6px 12px; font-size: 12px; }
}
.containers {
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space out the sections equally */
    align-items: center; /* Align items to the top of the container */
    width: 100%;
    max-width: 100%;
    height: 600px;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-bottom: 0.5px solid grey;
}

.section-title {
    width: 500px; /* Takes up 45% of the container */
 
    text-align: center; /* Align text to the center */
    
}

.section-title h1 {
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #006666;
}

.section-title p {
    font-size: 26px;
    margin-bottom: 30px;
    color: #555;
}

.dropdowns {
    width: 600px; /* Takes up 45% of the container */
  
}

.dropdown-btns {
    background-color: #FFFFFF;
    color: #006666;
    padding: 12px 20px;
    font-size: 26px;
    width: 100%;
    text-align: left;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.dropdown-btns:hover {
    background-color: #f2f2f2;
}

.dropdown-contents {
    display: none;
    padding: 12px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-top: none;
    
    animation: slideDown 0.5s ease;
}

.dropdown-contents p {
    font-size: 14px;
    color: black;
    font-weight: bold;
}

.section-labels {
    display: inline-block;
    background-color: #e0f2f2;
    color: #017374;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 14px;
}

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

/* Media Queries for Responsiveness */

/* Tablet view */
@media (max-width: 768px) {
    .containers {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    .section-title {
        width: 90%; /* Reduce width on smaller screens */
        margin-top: 50px;
    }

    .dropdowns {
        width: 90%; /* Reduce width on smaller screens */
       
    }

    .dropdown-btns {
        font-size: 22px; /* Make font slightly smaller */
        padding: 10px 18px;
    }

    .section-title h1 {
        font-size: 32px; /* Make the title smaller */
    }

    .section-title p {
        font-size: 20px; /* Make the paragraph text smaller */
    }
}

/* Mobile view */
@media (max-width: 480px) {
    .containers {
        padding: 10px;
    }

    .section-title {
        width: 100%;
    }

    .dropdowns {
        width: 100%;
    }

    .dropdown-btns {
        font-size: 18px; /* Reduce font size even more */
        padding: 8px 16px;
    }

    .section-title h1 {
        font-size: 28px; /* Reduce the title size for small screens */
    }

    .section-title p {
        font-size: 18px; /* Adjust paragraph text size */
    }
}
.contaner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.left-section {
    width: 50%;
    text-align: left;
}

.left-section h1 {
    font-size: 40px;
    font-weight: bold;
    color: #006666;
    margin-bottom: 20px;
}

.left-section p {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.left-section ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.left-section ul li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.left-section ul li::before {
    content: '●';
    color: #006666;
    font-size: 20px;
    margin-right: 10px;
}

.cta-button {
    background-color: #017374;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #017374;
}

.right-section {
    width: 45%;
    text-align: center;
}

.right-section img {
    width: 100%;
    height: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-labelss {
    display: inline-block;
    background-color: #e0f2f2;
    color: #017374;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Media Queries for Responsiveness */

/* For Tablets and Smaller Screens */
@media (max-width: 1024px) {
    .contaner {
        flex-direction: column;
        padding: 30px;
    }

    .left-section {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .right-section {
        width: 100%;
        text-align: center;
    }

    .left-section h1 {
        font-size: 32px;
    }

    .left-section p {
        font-size: 18px;
    }

    .left-section ul li {
        font-size: 14px;
    }

    .cta-button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .right-section img {
        height: 500px;
    }
}

/* For Mobile Screens */
@media (max-width: 768px) {
    .contaner {
        padding: 20px;
    }

    .left-section h1 {
        font-size: 28px;
    }

    .left-section p {
        font-size: 16px;
    }

    .left-section ul li {
        font-size: 14px;
    }

    .cta-button {
        font-size: 14px;
        padding: 10px 18px;
    }

    .right-section img {
        height: 400px;
    }

    .section-labelss {
        font-size: 12px;
        padding: 4px 10px;
    }
}

/* For Extra Small Mobile Screens */
@media (max-width: 480px) {
    .contaner {
        padding: 15px;
    }

    .left-section h1 {
        font-size: 24px;
    }

    .left-section p {
        font-size: 14px;
    }

    .left-section ul li {
        font-size: 12px;
    }

    .cta-button {
        font-size: 12px;
        padding: 8px 15px;
    }

    .right-section img {
        height: 350px;
    }

    .section-labelss {
        font-size: 10px;
        padding: 3px 8px;
    }
}
.containe {
  height: 700px;
    max-width: 1000px;
    margin: 50px auto;
    text-align: center;
}

.titles h1 {
    font-size: 46px;
    font-weight: bold;
    color: #006666;
    margin-bottom: 30px;
}

.sectors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 50px;
}

.sector-box {
    background-color: #ffffff;
    color: #017374;
    border: 1px solid grey;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.sector-box:hover {
    transform: scale(1.05);
    background-color: #017374;
    color: white;
}


/* Custom widths for individual sector boxes */
.sector-1 {
    width: 150px;
    height: 50px;
}
.sector-2 {
    width: 300px;
    height: 50px;
}
.sector-3 {
    width: 180px;
    height: 50px;
}

.sector-4 {
    width: 280px;
    height: 50px;
}
.sector-5 {
    width: 250px;
    height: 50px;
}
.sector-6 {
    width: 230px;
    height: 50px;
}
.sector-7 {
    width: 220px;
    height: 50px;
}
.sector-8 {
    width: 180px;
    height: 50px;
}
.sector-9 {
    width: 240px;
    height: 50px;
}
.sector-10 {
    width: 190px;
    height: 50px;
}
.sector-11 {
    width: 200px;
    height: 50px;
}
.sector-12 {
    width: 210px;
    height: 50px;
}
.sector-13 {
    width: 280px;
    height: 50px;
}
.sector-14 {
    width: 250px;
    height: 50px;
}
.sector-15 {
    width: 250px;
    height: 50px;
}
.section-labeless{
     display: inline-block;
    background-color: #e0f2f2;
    color: #017374;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .sectors {
        gap: 10px;
    }

    .sector-box {
        font-size: 14px;
        padding: 10px 20px;
    }

    .title h1 {
        font-size: 28px;
    }

    /* Adjust widths for mobile/tablet */
    .sector-1, .sector-2, .sector-3, .sector-4, .sector-5, .sector-6,
    .sector-7, .sector-8, .sector-9, .sector-10, .sector-11, .sector-12,
    .sector-13, .sector-14, .sector-15 {
        width: 110px; /* Adjusting widths for smaller screens */
    }
}

@media (max-width: 480px) {
    .sectors {
        gap: 8px;
    }

    .sector-box {
        font-size: 12px;
        padding: 8px 15px;
    }

    .title h1 {
        font-size: 24px;
    }

    /* Further adjust widths for very small screens */
    .sector-1, .sector-2, .sector-3, .sector-4, .sector-5, .sector-6,
    .sector-7, .sector-8, .sector-9, .sector-10, .sector-11, .sector-12,
    .sector-13, .sector-14, .sector-15 {
        width: 110px;
    }
}

  /* CONTACT-US FORM CSS START*/

.contact-section {
    border-top: 0.5px solid grey;
    display: flex;
    gap: 100px;
    padding: 60px;
    align-items: flex-start;
    height: 1200px;
    
}

.contact-left {
    flex: 1;
    margin-top: 100px;
}

.contact-badge {
    background: #e1f2f1;
    color: #006d67;
    border: none;
    padding: 6px 20px;
    border-radius: 6px;
    font-size: 24px;
    cursor: default;
}

.contact-left h2 {
    font-size: 52px;
    font-weight: 800;
    margin-top: 30px;
    line-height: 1.5;
}

.contact-left h2 span {
    font-weight: 400;
}

.contact-left .highlight {
    color: #008c85;
    font-weight: 800 !important;
}

.subtitle {
    margin-top: 20px;
    font-size: 22px;
    line-height: 1.5;
    max-width: 450px;
}

.contact-right {
    flex: 1.2;
    margin-top: 150px;

}

form {
    width: 100%;
}

.row {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.field {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100px;
}

.field.full {
    width: 100%;
}

label {
    font-size: 14px;
    margin-bottom: 5px;
}

label span {
    color: red;
}

input, textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

textarea {
    height: 100px;
    resize: none;
}

.submit-btn {
    width: 100%;
    background: #008c85;
    color: white;
    border: none;
    padding: 18px;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 15px;
}

.submit-btn:hover {
    background: #00736d;
}
/* From Uiverse.io by vishnupprajapat */ 
.checkbox-wrapper-46 input[type="checkbox"] {
  display: none;
  visibility: hidden;
}

.checkbox-wrapper-46 .cbx {
  margin: auto;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}
.checkbox-wrapper-46 .cbx span {
  display: inline-block;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}
.checkbox-wrapper-46 .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid #9098a9;
  transition: all 0.2s ease;
}
.checkbox-wrapper-46 .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}
.checkbox-wrapper-46 .cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #506eec;
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
}
.checkbox-wrapper-46 .cbx span:last-child {
  padding-left: 8px;
}
.checkbox-wrapper-46 .cbx:hover span:first-child {
  border-color: #506eec;
}

.checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child {
  background: #506eec;
  border-color: #506eec;
  animation: wave-46 0.4s ease;
}
.checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}
.checkbox-wrapper-46 .inp-cbx:checked + .cbx span:first-child:before {
  transform: scale(3.5);
  opacity: 0;
  transition: all 0.6s ease;
}

@keyframes wave-46 {
  50% {
    transform: scale(0.9);
  }
}

.form-select {
    width: 150px;
}
/* ===================================================== */
/*                  📱 MEDIA QUERIES                    */
/* ===================================================== */

/* ----------- Laptop / Large Tablets (max 1200px) ----------- */
@media (max-width: 1200px) {
    .contact-section {
        gap: 60px;
        padding: 40px;
        height: auto;
    }

    .contact-left h2 {
        font-size: 44px;
    }
}

/* ----------- Tablets (max 992px) ----------- */
@media (max-width: 992px) {
    .contact-section {
        flex-direction: column;
        height: auto;
        gap: 40px;
    }

    .contact-left,
    .contact-right {
        margin-top: 40px;
    }

    .row {
        flex-direction: column;
        gap: 15px;
    }

    .field {
        height: auto;
    }

    .contact-left h2 {
        font-size: 40px;
    }

    .subtitle {
        font-size: 20px;
    }
}

/* ----------- Mobile Landscape / Small Tablets (max 768px) ----------- */
@media (max-width: 768px) {
    .contact-section {
        padding: 30px;
    }

    .contact-left h2 {
        font-size: 34px;
    }

    .contact-badge {
        font-size: 20px;
    }

    .contact-right {
        margin-top: 20px;
    }
}

/* ----------- Mobile (max 480px) ----------- */
@media (max-width: 480px) {
    .contact-section {
        padding: 20px;
    }

    .contact-left h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .subtitle {
        font-size: 18px;
    }

    input, textarea {
        font-size: 13px;
        padding: 10px;
    }

    .submit-btn {
        padding: 15px;
        font-size: 16px;
    }
}
  /* CONTACT-US FORM CSS END*/



   /* FOOTER CSS START*/
  .footer {
    background: #006c70;
    color: white;
    padding: 60px 80px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.footer-left {
    flex: 1.5;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.logo-main {
    font-size: 48px;
    margin-right: 12px;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.footer-desc {
    max-width: 400px;
    line-height: 1.6;
    font-size: 16px;
    margin-top: 10px;
}

.footer-links {
    flex: 1;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

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

.footer-contact {
    flex: 1.3;
}

.footer-contact-item {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon {
    font-size: 18px;
}

.footer-social a {
    color: white;
    text-decoration: none;
}

.footer-social a:hover {
    text-decoration: underline;
}

.footer-line {
    border: none;
    border-top: 1px solid #cfe2e2;
    margin: 40px 0;
}

.footer-bottom {
    text-align: center;
    line-height: 1.8;
    font-size: 14px;
    opacity: 0.9;
}

/* ===================================================== */
/*                  📱 MEDIA QUERIES                    */
/* ===================================================== */

/* ----------- Large Tablets / Small Laptops (max 1200px) ----------- */
@media (max-width: 1200px) {
    .footer-container {
        gap: 40px;
    }

    .footer-logo {
        font-size: 36px;
    }

    .logo-main {
        font-size: 40px;
    }
}

/* ----------- Tablets (max 992px) ----------- */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        gap: 50px;
        text-align: left;
    }

    .footer-left,
    .footer-links,
    .footer-contact {
        flex: unset;
        width: 100%;
    }

    .footer-desc {
        max-width: 100%;
    }
}

/* ----------- Small Tablets / Large Phones (max 768px) ----------- */
@media (max-width: 768px) {
    .footer {
        padding: 40px 30px;
    }

    .footer-logo {
        font-size: 32px;
    }

    .logo-main {
        font-size: 36px;
    }

    .footer-links h3,
    .footer-contact h3 {
        font-size: 17px;
    }
}

/* ----------- Mobile (max 480px) ----------- */
@media (max-width: 480px) {
    .footer {
        padding: 30px 20px;
    }

    .footer-logo {
        flex-direction: column;
        font-size: 28px;
    }

    .logo-main {
        margin-right: 0;
        margin-bottom: 5px;
        font-size: 32px;
    }

    .footer-desc {
        font-size: 15px;
    }

    .footer-contact-item {
        font-size: 15px;
        line-height: 1.4;
    }

    .footer-bottom {
        font-size: 12px;
    }
}
/* FOOTER CSS END*/


/* POLICY CSS START*/

.privacy-policy {
    max-width: 1100px;
    margin: 200px auto;
    padding: 50px 40px;
    font-family: Arial, sans-serif;
    color: #1d2a39;
}

.privacy-policy h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
}

.updated-date {
    font-size: 18px;
    margin-bottom: 25px;
}

.privacy-policy p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.privacy-policy a {
    color: #0056b3;
    text-decoration: underline;
}
.privacy-policy h3 {
    font-size: 23px;
}

.privacy-policy h2 {
    font-size: 28px;
}

/* ===============================
   📱 TABLET (≤ 768px)
   =============================== */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 40px 25px;
        margin: 40px auto;
    }

    .privacy-policy h1 {
        font-size: 36px;
    }

    .privacy-policy p,
    .updated-date {
        font-size: 16px;
    }
}


/* ===============================
   📱📱 MOBILE (≤ 480px)
   =============================== */
@media (max-width: 480px) {
    .privacy-policy {
        padding: 30px 20px;
        margin: 25px auto;
    }

    .privacy-policy h1 {
        font-size: 30px;
        line-height: 1.2;
    }

    .privacy-policy p,
    .updated-date {
        font-size: 15px;
        line-height: 1.6;
    }
}
.buttn {
  position: fixed;
  right: 20px;   /* distance from right side */
  bottom: 20px;  /* distance from bottom */
  z-index: 9999; /* stays on top of other elements */

  /* Your original styles below */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color:#017374;
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 4px rgba(180, 160, 255, 0.253);
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
}


.svgIcon {
  width: 12px;
  transition-duration: 0.3s;
}

.svgIcon path {
  fill: white;
}

.buttn:hover {
  width: 140px;
  border-radius: 50px;
  transition-duration: 0.3s;
  background-color: #017374;
  align-items: center;
}

.buttn:hover .svgIcon {
  transition-duration: 0.3s;
  transform: translateY(-200%);
}

.buttn::before {
  position: absolute;
  bottom: -20px;
  content: "Back to Top";
  color: white;
  font-size: 0px;
}

.buttn:hover::before {
  font-size: 13px;
  opacity: 1;
  bottom: unset;
  transition-duration: 0.3s;
}

