/* Topbar Styling */
.topbar {
    background-color: #e28c75;
    color: black;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #ccc;
}

/* Links */
.topbar a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.topbar a:hover {
    text-decoration: underline;
}

/* Customer Care */
.customer-care {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    justify-content: center;
}

/* Call Icon */
.call-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: #000;
    border-radius: 50%;
    
}

.call-icon i {
    font-size: 12px;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 991px) {
    .topbar {
        font-size: 13px;
        text-align: center;
    }

    .topbar-left, .topbar-right {
        text-align: center !important;
    }

    .customer-care {
        justify-content: center;
        margin-top: 5px;
    }
}

@media (max-width: 768px) {
    .topbar {
        font-size: 12px;
        display:none;
    }

    .customer-care {
        flex-direction: column;
        text-align: center;
    }

    .call-icon {
        width: 20px;
        height: 20px;
    }
    
}


.typewriter {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
  }
  
  
  .typewriter__wrapper {
    display: inline-block;
    /* font-family: "Courier New", Courier, monospace; */

    font-size: 30px;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 4s steps(25, end) infinite,
      blink-caret 0.5s step-end infinite;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    
  }
  
  @keyframes typing {
    0% {
      width: 0;
    }
    50% {
      width: 100%;
    }
    100% {
      width: 0;
    }
  }
  
  /* Blinking Cursor Effect */
  @keyframes blink-caret {
    50% {
      border-color: transparent;
    }
  }
  
  @media (max-width: 768px) {
    .main_heading h1 {
      font-size: 2rem; /* Adjust for smaller screens */
    }
  
    .typewriter__wrapper {
      font-size: 1.2rem;
    }
  
    .typewriter p {
      font-size: 0.9rem;
    }
  }
  


/* hero section start */


    
        /* Hero Section */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
            animation: backgroundSlide 12s infinite;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        /* Background Animation */
        @keyframes backgroundSlide {
            0% {
                background-image: url('img/img1.jpg');
            }

            30% {
                background-image: url('img/img1.jpg');
            }

            60% {
                background-image: url('img/img3.jpg');
            }

            100% {
                background-image: url('img/img4.jpg');
            }
        }

        /* Hero Text */
        .info {
            position: relative;
            color: #fff;
            text-align: center;
            z-index: 1;
        }

        h2 {
            font-size: 4rem;
            font-weight: bold;
            font-family: 'Playfair Display', serif;
            /* Attractive font */

        }

        p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 20px auto;
        }

        .btn-get-started {
            display: inline-block;
            padding: 12px 30px;
            background: #e28c75;
            color: #fff;
            font-size: 1rem;
            border-radius: 5px;
            text-decoration: none;
            transition: 0.3s;
        }

        .btn-get-started:hover {
            background: #c6765d;
        }



        /* Responsive Design */
        @media (max-width: 768px) {
            h2 {
                font-size: 2rem;
            }

            p {
                font-size: 1rem;
            }
        }
    

/* founder section start */
    .forcall-section{
            display:flex;
            flex-direction:column;
            justify-content:center;
            align-items:center;
            row-gap: 14px;
        }
        .forcall-section h3{
            font-weight: bold;
            font-size: 18px;
        }
        .forcall-section a:hover{
            color:red;
        }
    .about-container-founder {
      padding: 50px 20px;
      background: #fbe9e44f;
      text-align: center;
      position: relative;
      /* border-radius: 50px; */
    }
  

    .about-container-founder h2 {
      font-size: 3rem;
      color: black;
      font-weight: 700;
      font-family: 'Playfair Display', serif;
      position: absolute;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    }
  
    .aboutpage-section-founder {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
      width: 85%;
      margin: auto;
      padding-top: 80px;
    }
  
    
    .about-img-section-founder {
      position: relative;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 20px;
    }
  
    .about-img-founder {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      border: 4px solid #e28c75;
      transition: transform 0.5s ease, filter 0.5s ease;
    }
  
    
    .about-img-founder:hover {
      transform: scale(1.1) rotate(2deg);
      filter: brightness(1.2) saturate(1.5);
    }
  
    
    .founder-name {
      margin-top: 15px;
      font-size: 1.5rem;
      font-weight: 800;
      color: black;
      text-align: center;
      font-family: "Roboto", serif;
    }
  
    .about-founder-name{
        color:red;
        font-weight: bold;
        font-size: 2rem;
        font-family: 'Times New Roman', Times, serif;
    }
    .about-content-founder {
      flex: 1;
      max-width: 600px;
      text-align: left;
    }
  
    .about-content-founder p {
      font-size: 19px !important;
      line-height: 1.8;
      color: black;
      font-family:math;
      text-align: justify;
    }
  
    /*.more-btn {*/
    /*  margin-top: 20px;*/
    /*  margin-left: 300px;*/
    /*}*/
  
    .btn-get-started {
      background-color: #e28c75;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-size: 1rem;
      transition: background-color 0.3s ease;
    }
  
    .btn-get-started:hover {
      background-color: #c6765d;
    }
  
    
     .about-img-main-founder {
      padding-right: -500px; 
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  
    @media (max-width: 1024px) {
      .aboutpage-section-founder {
        flex-direction: column;
        text-align: center;
      }
  
      .about-content-founder {
        text-align: center;
        padding: 20px;
      }
  
      
      .about-container-founder h2 {
        font-size: 2rem;
      }
  
      
      .about-img-main-founder {
        padding-left: 0;
      }
    }
  
    @media (max-width: 768px) {
      .about-img-section-founder {
        width: 280px;
        height: 280px;
      }
  
      .about-content-founder h2 {
        font-size: 1.8rem;
      }
  
      .about-content-founder p {
        font-size: 1rem;
      }
  
      .founder-name {
        font-size: 1.2rem;
      }
    }

    .about-img-main-founder {
  padding-left: 30px; 
}

@media (max-width: 1024px) {
  .about-img-main-founder {
    padding-left: 0; 
  }
}

/* about section start */

        .about-section {
            padding: 80px 0;
            background: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 37px;
            font-weight: 700;
            color: black;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            font-family: 'Times New Roman', Times, serif;
        }

        .section-header h2::after {
            content: '';
            display: block;
            width: 50px;
            height: 4px;
            background: #e28c75;
            margin: 8px auto 0;
        }

        .description {
            font-size: 18px;
            color: black;
            margin-bottom: 15px;
            
            

        }
           
        .image-container {
            position: relative;
            text-align: center;
        }

        .main-img {
            width: 100%;
            border-radius: 10px;
            border: 4px solid var(--color-primary);
            transition: transform 0.3s ease-in-out;
        }

        .overlay-img {
            width: 45%;
            position: absolute;
            left: -20px;
            bottom: -40px;
            border-radius: 10px;
            box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
        }

        .read-more-btn {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 25px;
            background: #e28c75;
            color: white;
            font-size: 16px;
            border-radius: 8px;
            text-decoration: none;
            transition: background 0.3s ease-in-out;
        }

        .read-more-btn:hover {
            background: #c6765d;
        }

        @media (max-width: 992px) {
            .image-container {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 28px;
            }

            .description {
                font-size: 14px;
            }

            .main-img {
                border: 2px solid var(--color-primary);
            }
        }
  

    
/* service section start */

    
    /* Service Section */
    .services-container {
        background-color: #fbe9e44f; /* Light Peach */
        padding: 60px 0;
        text-align: center;

    }
    
    .services-heading {
        font-size: 32px;
        font-weight: bold;
        color: #222;
        margin-bottom: 10px;
    }

    .services-underline {
        width: 100px;
        height: 4px;
        background-color: #d88c6c;
        margin: 0 auto 30px;
        border-radius: 2px;
    }

    .service-card {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        cursor: pointer;
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }

    .service-card:hover {
        transform: scale(1.08);
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
    }

    .service-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 10px;
        transition: transform 0.3s ease-in-out;
    }

    .service-card:hover img {
        transform: scale(1.1);
    }

    .service-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 15px;
        text-align: center;
        font-size: 18px;
        font-weight: bold;
        transition: opacity 0.3s ease-in-out;
        font-family: Stylish, serif;
    }

    .service-card:hover .service-overlay {
        background: rgba(0, 0, 0, 0.9);
    }


    
 
/* service box section */


    /* Wrapper and Box Styles */
    .wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        padding: 20px;
        background: #fbe9e44f;
    }

    .box {
        width: 100%;
        max-width: 400px;
        height: auto;
        background: azure;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 20px;
        text-align: center;
        transition: 0.3s;
        
    }

    .box:hover {
        background: #f9dbd2;
        /* color: white; */
        transform: scale(1.05);
        border-bottom: brown solid 2px;
    }

    .box:hover p, .box:hover ul {
        color: black;
    }

    .symbol {
        font-size: 40px;
        margin-bottom: 10px;
    }

    /* Heading Styles */
    h3 {
        color: #333;
        font-size: 20px;
        margin-bottom: 8px;
    }

    /* List Styles */
    ul {
        text-align: left;
        padding-left: 20px;
        color: #666;
        font-size: 18px;
        margin-top: 10px;
    }

    ul li {
        margin-bottom: 5px;
    }

    /* Box Styling */
.box {
    width: 100%;
    max-width: 400px;
    height: 350px; /* Ensure all boxes have the same height */
    background: azure;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Push content to top & button to bottom */
    transition: 0.3s;
}

/* Button Styling */
.btn1 {
    background: #cd6042;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    margin-top: auto; /* Push button to bottom */
    align-self: center; /* Center button horizontally */
    cursor: pointer;
    transition: 0.3s;
}

.btn1:hover {
    background: #a74d35;
    transform: scale(1.1);
}

/* Responsive Fix */
@media (max-width: 768px) {
    .box {
        height: auto; /* Allow flexible height on small screens */
    }
}


    .btn1:hover {
        background: #c6765d;
        transform: scale(1.1);
        color: white;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .wrapper {
            flex-direction: column;
            align-items: center;
        }

        .btn1 {
            width: 100%;
        }
    }



    /* new service item section */
    
        /* Service Start */
        .service .service-item {
            position: relative;
            overflow: hidden;
        }

        .service .service-item .service-inner .service-title {
            position: relative;
            margin-top: -30px;
            text-align: center;
            transition: 0.5s;
        }

        .service .service-item .service-inner .service-title .service-content {
            position: absolute;
            bottom: -100%;
            left: 0;
            margin-left: 30px;
            margin-right: 30px;
            text-align: center;
            border-radius: 10px;
            background: #e28c75;
            /* Warm Terracotta */
            opacity: 0;
            transition: 0.5s;
        }

        .service .service-item:hover .service-inner .service-title .service-content {
            bottom: 0;
            opacity: 1;
        }

        .service .service-item .service-inner .service-title .service-title-name {
            transition: 0.5s;
        }

        .service .service-item:hover .service-inner .service-title .service-title-name {
            opacity: 0;
        }

        .service .service-item .service-inner .service-img {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
        }

        .service .service-item .service-inner .service-img img {
            transition: 0.5s;
        }

        .service .service-item:hover .service-inner .service-img img {
            transform: scale(1.3);
        }

        .service .service-item .service-inner .service-img::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            border-radius: 10px;
            background: rgba(255, 255, 255, .5);
            transition: 0.5s;
            opacity: 0;
        }

        .service .service-item:hover .service-inner .service-img::after {
            height: 100%;
            opacity: 1;
        }

        .img-fluid1 {
            height: 400px;
        }

        /* Custom Colors */
        .custom-bg {
            background-color: #e28c75 !important;
            /* Light Brown */
        }

        .custom-btn {
            background-color: #e28c75 !important;
            /* Warm Terracotta */
            color: white !important;
            border: none;
        }

        .custom-btn:hover {
            background-color: #e28c75 !important;
            /* Light Brown on hover */
        }

        /* Remove underline from links */
        h4,
        a {
            text-decoration: none !important;
           
        }

        /* Service End */
  


/* cosmoderm treatment section */


    


    .treatment-section {
        text-align: center;
        padding: 80px 0;
        background: #fbe9e44f !important;
    }

    /* Section Title */
    .treatment-title {
        font-size: 37px;
        font-weight: bold;
        color: #333;
        position: relative;
        display: inline-block;
    }

    .treatment-title::after {
        content: "";
        display: block;
        width: 50px;
        height: 3px;
        background: #e28c75;
        margin: 10px auto;
    }

    /* Treatments Grid */
    .treatment-card {
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.3s ease-in-out;
        text-align: center;
        padding: 20px;
    }

    .treatment-card:hover {
        transform: translateY(-5px);
    }

    .treatment-card img {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .treatment-icon {
        background: #e28c75;
        color: white;
        display: inline-block;
        padding: 10px;
        border-radius: 50%;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .treatment-name {
        font-size: 18px;
        font-weight: bold;
        color: #444;
        margin-top: 10px;
    }

    /* View More Button */
    .view-more-btn {
        display: inline-block;
        padding: 12px 25px;
        background: #e28c75;
        color: white;
        font-size: 16px;
        border-radius: 8px;
        text-decoration: none;
        transition: background 0.3s ease-in-out;
    }

    .view-more-btn:hover {
        background: #c6765d;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .treatment-card {
            margin-bottom: 20px;
        }
    }

    @media (max-width: 768px) {
        .treatment-title {
            font-size: 26px;
        }

        .view-more-btn {
            font-size: 14px;
            padding: 10px 20px;
        }
    }




    /* gallery start */

  
    .gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

   



/*** Appointment  Start ***/
.appointment {
    /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(144, 127, 127, 0.5)), url(img/img11.jpg); */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background: #fde6df;
}

.appointment .appointment-form {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, .4));
    object-fit: cover;
    border-radius: 10px;
}

.appointment .appointment-time {
    /* background: linear-gradient(rgba(189, 156, 156, 0.2), rgba(255, 255, 255, .2)); */
    object-fit: cover;
    border-radius: 10px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, .4));
}
/*** Appointment End ***/

/*** Counter Start ***/
.counter-section .counter-item .counter-content {
    position: relative;
    margin-bottom: 60px;
    background-image: linear-gradient(rgba(252, 152, 195, 0.3), rgba(255, 255, 255, 0.3), rgba(136, 76, 210, 0.3));
    border-radius: 10px;
    z-index: 9;
}

.counter-section .counter-item {
    text-align: center;
    /* background: rgba(255, 255, 255, .5) !important; */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, .4));
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    object-fit: cover;
    border-radius: 0 25% 0 25%;
}

.counter-section .counter-item .counter-content .svg-img {
    position: absolute;
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%); 
    margin-bottom: -50px; 
    margin-left: -45px; 
    transform: rotate(180deg);
}

.counter-section .counter-item .counter-quantity {
    width: 110px;
    height: 110px;
    border-radius: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
}
/*** Counter End ***/

 /* Ensure all placeholders and form elements have white text */
        .form-control::placeholder,
        .form-select::placeholder,
        textarea::placeholder {
            color: white !important;
            opacity: 1;
        }

        .form-select option {
            color: white;
            background: #222;
        }

        /* Counter Section */
        .counter-item {
            background: #222;
            text-align: center;
            border-radius: 10px;
            padding: 30px;
        }

        .counter-content {
            background: #e28c75;
            padding: 20px;
            border-radius: 10px;
        }

        .counter-content i,
        .counter-content h5 {
            color: #222;
        }

        .counter-number {
            font-size: 2rem;
            font-weight: bold;
            color: #fff;
            margin-top: 15px;
            background: #e28c75;
            display: inline-block;
            padding: 10px 20px;
            border-radius: 8px;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .counter-item {
                padding: 20px;
            }

            .counter-content {
                padding: 15px;
            }

            .counter-number {
                font-size: 1.5rem;
                padding: 8px 16px;
            }

            .appointment-form,
            .appointment-time {
                padding: 20px;
            }
        }
    
        /* testimonial start */
   
    
        .testimonial-section {
            background-color: #f8f9fa;
        }

        .testimonial-item {
            text-align: center;
            border-radius: 10px;
            transition: 0.3s;
            padding: 20px;
        }

        .testimonial-item:hover {
            transform: scale(1.05);
        }

        .testimonial-img {
            width: 50px;
            /* Fixed small size */
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .rating i {
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .testimonial-item {
                padding: 15px;
            }

            .testimonial-img {
                width: 40px;
                /* Smaller image size on mobile */
                height: 40px;
            }
        }
   






/*** Contact Start ***/
.contact {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact .contact-form {
    background: rgba(255, 255, 255, 0.6);
}
/*** Contact End ***/


/* whatsapp icon */



  /* social button */

  /* Floating Social Buttons */
  .social-buttons {
    position: fixed;
    left: 20px;
    top: 80%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.Btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: .3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
}

.sign {
    width: 100%;
    transition-duration: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sign i {
    font-size: 20px;
    color: white;
}

.text {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: white;
    font-size: 1.0em;
    font-weight: 600;
    transition-duration: .3s;
}

.Btn:hover {
    width: 125px;
    border-radius: 40px;
    transition-duration: .3s;
}

.Btn:hover .sign {
    width: 30%;
    transition-duration: .3s;
    padding-left: 20px;
}

.Btn:hover .text {
    opacity: 1;
    width: 70%;
    transition-duration: .3s;
    padding-right: 10px;
}

.Btn:active {
    transform: translate(2px ,2px);
}

.facebook { background-color: #1877F2; }
.linkedin { background-color: #1877F2; }
/* .instagram { background: linear-gradient(45deg, #833AB4, #E1306C, #FD1D1D); } */
.call { background-color: #34b7f1; }
.whatsapp { background-color: #50C878; }

@media (max-width: 768px) {
    .social-buttons {
        left: 10px;
        gap: 10px;
    }
    .Btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .social-buttons {
        left: 5px;
    }
    .Btn {
        width: 40px;
        height: 40px;
    }
}


/* footer start */
.footer {
    background: linear-gradient(to right, #1f1f1f, #292929);
    color: white;
    background-image: url('your-image.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}

.footer a:hover {
    color: #f39c12;
}

.footer ul {
    padding: 0;
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer i {
    color: white;
}

.social-icons a {
    font-size: 18px;
    margin-right: 15px;
    padding: 10px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

.social-icons a.facebook {
    background-color: #3b5998;
    color: white;
}

.social-icons a.whatsapp {
    background-color: #25D366;
    color: white;
}

.social-icons a.instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4, #ac2bac);
    color: white;
}

.social-icons a.linkedin {
    background-color: #0077b5;
    color: white;
}

/* Hover effect for social icons */
.social-icons a:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Hover effect for footer links */
.footer .hover-bg:hover {
    background-color: rgba(243, 156, 18, 0.2);
}

/* Transition effect */
.transition-all {
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .footer .row {
        text-align: center;
    }

    .social-icons a {
        font-size: 22px;
        margin-right: 10px;
        padding: 8px;
        width: 45px;
        height: 45px;
    }
}


