

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 1rem = 10px */
    overflow-x: hidden;
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
    font-size: 1.6rem; /* 16px */
    line-height: 1.6;
    color: var(--tcr-secondary-color);
    background-color: #f9f9f9;
    font-family: "outfit", sans-serif;
    overflow-x: hidden;
}

h1 {
    font-size: 3.6rem; /* 36px */
    font-weight: bold;
    margin: 2rem 0;
   
}

h2 {
    font-size: 3rem; /* 30px */
    font-weight: bold;
    margin: 1.5rem 0;
   
}

h3 {
    font-size: 2.4rem; /* 24px */
    font-weight: bold;
    margin: 1.2rem 0;
}

h4 {
    font-size: 2rem; /* 20px */
    font-weight: bold;
    margin: 1rem 0;
}

h5 {
    font-size: 1.8rem; /* 18px */
    font-weight: bold;
    margin: 1rem 0;
}

h6 {
    font-size: 1.6rem; /* 16px */
    font-weight: bold;
    margin: 0.8rem 0;
}

p {
    font-size: 1.6rem; /* 16px */
    margin: 1.6rem 0;
}

a {
    font-size: 1.6rem; /* 16px */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

:root {
    --tcr-primary-color: #3ec4ef;
    --tcr-secondary-color: #142959;
    --tcr-tertiary-color: #f6f6f6;
    --tcr-white-color:#fff;
}

.container {
    max-width: 120rem; /* 1200px */
    margin: 0 auto;
    padding: 0 2rem; /* 20px */
    width: 100%;
    box-sizing: border-box;
}


/* Hero Section */



.slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide .content {
    position: absolute;
    top: 60%;
    left: 5%;
    transform: translateY(-50%);
  
}

.slide .content h1 {
    z-index: 9;
    font-family: Outfit;
    height: auto;
    width: auto;
    color: rgb(20, 41, 89);
    text-decoration: none;
    white-space: nowrap;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    text-align: left;
    line-height: 80px;
    letter-spacing: 0px;
    font-weight: 600;
    font-size: 80px;
    backdrop-filter: none;
    filter: none;
    transform-origin: 50% 50%;
    opacity: 1;
    transform: translate(0px, 0px);
    visibility: visible;
}

/* .slide .content span {
    color: var(--tcr-primary-color);
} */

.slide .content p {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    gap: 5rem;
}

.products, .about-us {
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: 600;
}

.products {
    background: var(--tcr-primary-color);
    color: white;
}

.products:hover {
    background:var(--tcr-secondary-color);
}

.about-us {
    background:var(--tcr-secondary-color);
    color: white;
}

.about-us:hover {
    background: var(--tcr-primary-color);
}

/* why-choose-us */
.why-choose-us {
    padding: 50px 20px;
}

.section-title {
    margin-bottom: 40px;
    text-align: center;
}

.badge {
    display: inline-block;
    background: #e6f9f7;
    color: var(--tcr-primary-color);
    padding: 10px 15px;
    border-radius: 2.2rem;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
   
}

.section-title h2 {
    font-size: 3.6rem;
    margin-top: 10px;
}

.cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.card::before {
    position: absolute;
    content: '';
    width: 0%;
    height: 0%;
    left: 0;
    bottom: 0;
    opacity: 0;
    border-radius: 5px;
    transition: all 500ms ease;
    background: #9fe2f7;
    z-index: -1;
}
.card {
    position: relative;
    background: #ecf9fd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
    transition: all 500ms ease;
    border-bottom: 5px solid var(--tcr-secondary-color);
    transition: all 0.3s;
    z-index: 0;
}
.card:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
}
.card:hover{
color: white;
}


.card img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 20px;
    color: #0b2b5e;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
/* services */
.services{
padding-top:5rem;
}
.section-title {
    font-size: 32px;
    color: var(--tcr-secondary-color);
    margin: 40px 0;
    text-transform: uppercase;
}

/* Services Grid */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1100px;
    margin: auto;
}

/* Service Card */
.service-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #eee;
    text-align: center;
    box-shadow: 0px 5px 21px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    transition: all 500ms ease;
    border-bottom: 5px solid var(--tcr-secondary-color);
}

/* Icons with Gradient */
.icon-holder {
    font-size: 60px;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, var(--tcr-primary-color), var(--tcr-secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.5s ease;
}

/* Service Content */
.content-box h3 a {
    color: var(--tcr-secondary-color);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.5s ease;
    line-height: 1rem;
}

.content-box p {
    color: #666;
    font-size: 14px;
    transition: all 0.5s ease;
    margin-bottom: 2.5rem;
}

/* Read More Button */
.read-more {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    transition: all 0.5s ease;
}

.read-more a.read_m {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #eee;
    color: var(--tcr-secondary-color);
    font-size: 15px;
    font-weight: 500;
    border-radius: 30px;
    background: white;
    transition: all 0.5s ease;
    text-decoration: none;
    background-color: var(--tcr-primary-color);
}

.read-more a.read_m i {
    margin-left: 10px;
}

/* Hover Effects */
.service-card:hover .icon-holder {
    transform: translateY(-20px);
    transition: all 0.5s ease;
}

.service-card:hover .content-box {
    transform: translateY(-10px);
    transition: all 0.5s ease;
}

.service-card:hover .read-more {
    bottom: 20px;
}

.service-card:hover {
    box-shadow: 0px 11px 14px 10px rgba(0, 0, 0, 0.05);
    background-color: #d9f3fc;
    border-bottom: 5px solid var(--tcr-secondary-color);
}

.read-more a.read_m::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: var(--tcr-primary-color);
    transition: all 0.5s ease;
    z-index: -1;
    left: -145px;
    border-radius: 30px;
}

.read-more a.read_m:hover::before {
    left: 0;
}

.read-more a.read_m:hover {
   background-color: var(--tcr-secondary-color);
   color: white;
}


/* services page */
.section-title-services {
    text-align: center;
    font-size: 34px;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(to right, var(--tcr-primary-color), var(--tcr-secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 40px 0;
}

/* Services Container */
.services-containers {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* Service Category */
.service-category {
    background: white;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    border-left: 6px solid var(--tcr-primary-color);
    cursor: pointer;
    position: relative;
}

.service-category:hover {
    transform: translateY(-5px);
}

.service-category h3 {
    font-size: 22px;
    color: var(--tcr-secondary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-category h3 i {
    transition: transform 0.4s ease-in-out;
}

.service-category.active h3 i {
    transform: rotate(180deg);
}

/* Services List */
.service-list {
    list-style: none;
    padding-left: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease-in-out, opacity 0.4s ease-in-out;
}

.service-category.active .service-list {
    max-height: 500px; /* Adjust based on content */
    opacity: 1;
}

.service-list li {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    color: #333;
    font-size: 16px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease-in-out, transform 0.3s ease-in-out;
}

.service-category.active .service-list li {
    opacity: 1;
    transform: translateY(0);
}

.service-list li i {
    margin-right: 10px;
    color: var(--tcr-primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .service-category h3 {
        font-size: 20px;
    }
}



.ms-banner {
   background-image: url(../images/hero/banner1-bg1.jpg);
}
.ms-content {
    background: rgba(20, 41, 89, 0.8); /* Converted HEX (#142959) to RGBA */

    text-align: center;
    padding: 7.5rem 0;
    color: white;
    padding: 280px 0 120px 0;
}
/* Appointment Section */
/*=== Form Input Outline ===*/
.form-section .container{
    max-width: 140rem !important;
}
.tcr-form.appointment-form h3 {
    font-size: 32px;
    line-height: 42px;
    color: var(--tcr-white-color);
    text-align: center;
  }
  
  .tcr-form.appointment-form input[type=submit] {
    min-width: 100%;
  }
  
  .tcr-form.appointment-form input[type=submit]:hover {
    background: var(--tcr-white-color);
    color: var(--tcr-secondary-color);
  }
  
  .tcr-form.appointment-form .p-hide p {
    margin: 0;
  }
  .wpcf7-form .contact-form{
    display: flex;
    align-items: center;
    background-color: var(--tcr-primary-color);
    padding:20px 50px;
    position: relative;
    border-radius: 10px;
    background-image: url(../images/pettern-01.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: auto;
  }
  
  .wpcf7-form .contact-form::before{
    position: absolute;
    content: "";
    right: 0px;
    bottom: 0px;
    width: 0;
    height: 0;
    border-bottom: 40px solid var(--tcr-white-color);
    border-left: 40px solid transparent;
  }
   
  .wpcf7-form .contact-title .title{
    font-size: 34px;
    line-height: 40px;
    font-family: var(--tcr-ch-title-ff);
    font-weight: 600;
    color: var(--tcr-white-color);
    margin-bottom: 10px;
  }
  .wpcf7-form .contact-title .text{
    color: var(--tcr-white-color);
  }
  .wpcf7-form .input-group {
    display: block;
    position: relative;
    margin-bottom: 15px;
  }
  .wpcf7-form .contact-cover .input-group select,
  .wpcf7-form .contact-cover .input-group input::placeholder,
  .wpcf7-form .contact-cover .input-group textarea::placeholder{
    color: var(--tcr-white-color) !important;
    font-family: var(--tcr-body-ff);
    opacity: 1;
  }
  .wpcf7-form .contact-cover .input-group select,
  .wpcf7-form .contact-cover .input-group input{
    border-bottom:1.5px solid rgb(20, 41, 89 / 50%) !important;
    border-radius: 0px;
    border-top: 0px;
    border-right: 0px;
    border-left: 0px;
    padding-left: 0 !important;
    margin: 0;
    color: var(--tcr-white-color);
    background: var(--tcr-primary-color);
  }
  .wpcf7-form .contact-cover .input-group textarea{
    height:60px ; 
    border-radius: 0px;
    border-top: 0px;
    border-right: 0px;
    border-left: 0px;
    border-bottom: 1.5px solid rgb(20, 41, 89  / 50%) !important;
    padding-left: 0px !important;
    color: var(--tcr-white-color);
    background-color: var(--tcr-primary-color);
    padding-top: 20px;
  }
  
  .wpcf7-form .input-group select option{
    color: var(--tcr-secondary-color);
    background-color: var(--tcr-white-color);
  }
  
  .wpcf7-form .input-group .ajax-loader {
    position: absolute;
    left: 10px;
    top: 20px;
    z-index: 9;
  }
  .wpcf7-form  p{
    margin: 0;
  } 
  .wpcf7-form h3{
    margin-bottom: 25px;
    font-size: 40px;
    line-height: 43px;
    font-weight: 600;
    text-transform: capitalize;
  }
  
  .wpcf7-form .contact-cover{
    width: 76%;  
    margin: 0px 50px;
  } 
  .wpcf7-form .from-button{
   
    position: relative;
  }
  .wpcf7-form .from-button .input-button{
    text-align: right;
  }
  .wpcf7-form .from-button input{
    padding: 0;
    width: 115px;
    height: 115px;
    background-color: var(--tcr-secondary-color);
    border-radius: 100%;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    color: white;
    text-transform: uppercase;
  }
  .wpcf7-form .from-button input:hover{
    background-color: var(--tcr-white-color);
    color: var(--tcr-primary-color);
  }
  
  /* tab-from */
.wpcf7-form .tab-form{
    border-radius: 0px 30px 30px 30px;
  } 
  /*=== contact-form ===*/
  .doctent-form.contact-form input[type=submit] {
    width: 100%;
  }
  .row {
    display: flex;
   
    flex-wrap: wrap;
}
.wpcf7-form .contact-cover .input-group input,
.wpcf7-form .contact-cover .input-group select,
.wpcf7-form .contact-cover .input-group textarea {
     /* Removes the border */
    outline: none; /* Removes the outline when clicking */
    background: transparent; /* Ensures background remains clean */
}

.wpcf7-form .contact-cover .col-sm-6 {
    width: calc(50% - 10px); /* Two columns, adjusting for spacing */
}

input[type="number"], input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="url"], input[type="search"], select, textarea {
    display: block;
    width: 100%;
    height: 60px;
    font-size: 1.8rem;
    background-color: var(--tcr-white-color);
    line-height: normal;
    margin-bottom: 0px;
    font-weight: 500;
    border: transparent;
    transition: all 500msease;
    -webkit-transition: all 500msease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    font-family: var(--tcr-ch-subtitle-ff);
    border: 1px solid #f2f2f2;
    border-radius: 8px;
    padding-left: 15px !important;
    color: var(--tcr-body-color);
}
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}


/* footer */
.footer {
    background-color: #0b2242;
    color: #fff;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}



.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo h2 {
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    color: #00d4ff;
}



.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 0;
}

.footer-section {
    width: 23%;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00d4ff;
}
.fa-phone{
    font-size: 3rem;
}
.ph-no{
    font-size: 3rem;
}
.contact-info p {
    margin: 5px 0;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #00d4ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
/* products section */
.product-section{
padding: 5rem 0;
}
.product-section .container h1{
text-align: center;
margin:5rem 0;
}
.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Adjust spacing */
    gap: 20px; /* Adds space between items */
}
.prod-card {
    width: calc(33.33% - 20px);
    width: 320px;
    height: 400px;
    background-color: var(--tcr-secondary-color);
    border-radius: 1rem;
    padding: 4rem 2rem 0;
    color:white;
    overflow-y: hidden;
    margin-bottom: 5rem;
  }
.dummy{
    width: calc(33.33% - 20px);
    width: 320px;
    height: 400px;
    background-color:transparent;
    border-radius: 1rem;
    padding: 4rem 2rem 0;
    color:white;
    overflow-y: hidden;
    margin-bottom: 5rem;  
}
  .card__img {
    max-width: 100%;
    height: auto;
    position: absolute;
    width: 260px;
    filter: drop-shadow(5px 10px 15px rgba(8,9,13,.4));
  }
  
  .card__data {
    transform: translateY(13.2rem);
    text-align: center;
    margin-top: 9rem;
  }
  
  .card__title {
    font-size:  2.3rem;
    color:var(--tcr-primary-color);
    margin-bottom: .5rem;
  }
  
  .card__preci {
    display: inline-block;
    font-size:2rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    color: white;
  }
  
  .card__description {
    font-size: 1.6rem;
    text-align: initial;
    margin-bottom: 1.25rem;
    opacity: 0;
    color: #fff;
  }
  
  .card__button {
    display: block;
    width: max-content;
    padding: 1.125rem 2rem;
    background-color: var(--tcr-primary-color);
    color:white;
    border-radius: .5rem;
    font-weight: 600;
    transition: .2s;
    opacity: 0;
  }
  
  .card__button:hover {
    box-shadow: 0 18px 40px -12px rgba(242,162,12,.35);
  }
  
  .card__img, 
  .card__data, 
  .card__title, 
  .card__preci, 
  .card__description {
    transition: .5s;
  }
  
  /* Hover card effect */
  .prod-card:hover .card__img {
    transform: translate(-1.5rem, -9.5rem) rotate(-20deg);
  }
  
  .prod-card:hover .card__data {
    transform: translateY(4.8rem);
  }
  
  .prod-card:hover .card__title {
    transform: translateX(-2.3rem);
    margin-bottom: 0;
  }
  
  .prod-card:hover .card__preci {
    transform: translateX(-6.8rem);
  }
  
  .prod-card:hover .card__description, 
  .prod-card:hover .card__button {
    transition-delay: .2s;
    opacity: 1;
  }

  .product-container{
    max-width: 600px;
    margin: auto;
}
   .product-container img{
    width: 100%;
    max-width: 400px;
}


/* About-us */

.about-vision,
.about-mission,
.about-history {
    padding: 40px 10%;
    
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}



.section-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-image {
    width: 40%;
    border-radius: 8px;
}

.section-text {
    width: 60%;
}



.section-description {
    line-height: 1.6;
    color: #666;
}

.section-list {
    list-style: none;
    padding: 0;
    color: #666;
}

.list-item {
    padding: 10px 0;
    position: relative;
}

.list-item::before {
    content: "✔";
    color: var(--tcr-primary-color);
    font-weight: bold;
    margin-right: 10px;
}
@media (max-width: 768px) {
    .section-content {
        flex-direction: column;
        text-align: center;
    }

    .section-image,
    .section-text {
        width: 100%;
    }
}
/* brands */
.brands h2{
    text-align: center;
    font-size: 3.6rem;
    margin-top: 10px;
    color: var(--tcr-secondary-color);
}
.brands{
    padding: 10rem 0;
}
.brand-imgs {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Allow items to wrap */
    gap: 2rem; /* Add spacing between items */
    margin-top: 5rem;
    align-items: center;
}

.contact-section {
    padding: 40px 10%;
    background-color: #f5f5f5;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.contact-details {
    flex: 1;
    max-width: 40%;
}

.section-title {
    font-size: 24px;
    color: #0077b6;
    margin-bottom: 15px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-info li i {
    color: #0077b6;
    margin-right: 10px;
}

.contact-info a {
    text-decoration: none;
   
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #0077b6;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
    color: #0077b6;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    color: #005582;
    transform: scale(1.1);
}

.map-container {
    flex: 1;
    max-width: 55%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .contact-details,
    .map-container {
        max-width: 100%;
    }
}

.blog-section {
    padding: 50px 10%;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 28px;
    color: #0077b6;
    margin-bottom: 40px;
    text-align: center;
}

.blog-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    display: flex;
    flex-direction: column;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 10px;
}

.blog-content p {
    flex-grow: 1;
    font-size: 14px;
    color: #555;
}

.read-mores {
    margin-top: 15px;
    text-decoration: none;
    color: #0077b6;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-mores:hover {
    color: #005582;
}

/* Popup background */
.popup {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
  }
  
  /* Popup content box */
  .popup-content {
    background: #fff;
    margin: 10% auto;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    position: relative;
    animation: slideIn 0.4s ease;
  }
  
  /* Close button */
  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
  }
  
  /* Form elements styling */
  .popup-content input,
  .popup-content select,
  .popup-content textarea,
  .popup-content button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease; /* Smooth focus animation */
  }
  
  /* Dropdown select animation */
  .popup-content select {
    background-color: #fff;
    appearance: none; /* Remove default arrow */
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="black" d="M2 0L0 2h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 10px 10px;
    padding-right: 30px;
    cursor: pointer;
  }
  
  /* Add focus effect */
  .popup-content select:focus,
  .popup-content input:focus,
  .popup-content textarea:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
  }
  
  /* Submit button styling */
  .popup-content button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  .popup-content button:hover {
    background-color: #45a049;
  }
  
  /* Animations */
  @keyframes slideIn {
    from {
      transform: translateY(-50px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }
  .gallery-section {
    padding: 50px 10%;
    background-color: #f5f5f5;
    text-align: center;
  }
  
  .section-title {
    font-size: 28px;
    color: #0077b6;
    margin-bottom: 30px;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover {
    transform: scale(1.05);
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s ease;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe5d;
    text-decoration: none;
  }
  