
/*------Logo slid start _--*/
.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logos-track {
    display: flex;
    gap: 40px;
    animation: slide 18s linear infinite;
}

.logos-track img {
    height: 140px;
    object-fit: contain;
    
   
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.logos-track img:hover {
    transform: scale(1.1);
    filter: grayscale(0);
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/*------Logo slid end _--*/
/*------fact counter _--*/
   .counter-item:hover {
        transform: translateY(-5px);
        transition: all 0.3s ease;
        background: rgba(255,255,255,0.1);
    }

    @media (max-width: 767px) {
        .counter-item {
            height: auto !important;
        }
    }
/*------fact counter _--*/
_____________________________
___________________________
body{
    font-family: 'branding', sans-serif;
}
/***  Line Start ***/
/* Container wrapper */
.my-custom-heading {
  max-width: 900px;       /* limit width */
  margin: 0 auto;          /* center horizontally */
  padding-bottom: 2rem;    /* bottom padding (adjust as needed) */
  text-align: center;  
    /* center text */
}

/* Heading styling */
.my-custom-heading h3 {
  font-weight: bold;
  font-size: 2.0rem;       /* adjust as needed */
  margin-bottom: 0.5rem;
}

/* Highlighted span inside heading */
.my-custom-heading h3 span {
  color: #0e87c9;
  font-weight: bold;
}

/* Divider line under the heading */
.my-custom-heading .Line {
  width: 90px;             /* length of the line — adjust as you like */
  height: 4px;             /* thickness */
  background-color: #0e87c9;
  margin: 0.75rem auto 1.5rem; /* centers the line and adds spacing above/below */
}

/* Paragraph styling */
.my-custom-heading p {
  font-size: 1.1rem;         /* adjust for readability */
  line-height: 1.6;
  color: #333;             /* or any color that suits your design */
}
/*** Line end  ***/
/*** Card start who we are   ***/
    .my-card {
      background-color: #ffffff;
      border-radius: 19px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
      padding: 30px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
      height: 100%;
    }
    .my-card img {
      width: 70px;
      margin-bottom: 16px;
    }
    .my-card h2 {
      color: #fbad1d;
      font-size: 22px;
      margin-bottom: 16px;
      text-transform: uppercase;
    }
    .my-card p {
      font-size: 17px;
      line-height: 1.6;
      color: #444;
      text-align: center;
    }
    .my-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    }

/*** Card end who we are   ***/

    .info-card {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      background-color: #fff;
      border-radius: 19px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
      overflow: hidden;
      margin: -200px 0px -100px 0px;
      max-width: 1000px;
      padding-top: 20px;
      
  }

    .info-card .card-content, 
    .info-card .card-image {
      flex: 1 1 50%;
      /* allow to shrink or grow, base 50% */
    }

    .info-card .card-content {
      padding: 30px;
    }

    .info-card .card-content h3 {
      color: #0e87c9;
      font-weight: bold;
      margin-bottom: 16px;
      padding: 0px 0px 0px 40px ;
      /* you can adjust font-size as needed */
    }

    .info-card .card-content p {
      font-size: 17px;
      text-align: justify;
    
      line-height: 1.4;
       color:#333; 
       padding: 0px 0px 0px 40px ;
    }

    .info-card .card-content .btn {
      display: inline-block;
      
      padding: 10px 20px;
      background-color: #0e87c9;
      color: white;
      text-decoration: none;
      border-radius: 4px;
      font-size: 14px;
      
      
    }

    .info-card .card-image img {
      max-width: 80%;
     padding: 10px;
     border-radius: 19px;
    
    }
      .custom-img {
    max-width: 80%;      /* limits image size */
    padding: 10px;
    border-radius: 19px;
    display: block;
    margin: 0 auto;      /* centers image horizontally */
  }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .info-card {
        flex-direction: column;
      }
      .info-card .card-content,
      .info-card .card-image {
        flex: 1 1 100%;
      }
      .info-card .card-content {
        padding: 20px;
      }
    }

/*** Carousel Header Start ***/
/*Carosal--------------------------*/
 *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: sans-serif;
      line-height: 1.4;
      background-color: #e8e8e8;
    }

    .css-carousel-fullscreen {
      position: relative;
      width: 100%;
      overflow: hidden;
    }
    .css-carousel-fullscreen .carousel-slide {
      display: none;
      position: relative;
    }
    .css-carousel-fullscreen .carousel-slide.active {
      display: block;
    }
    .css-carousel-fullscreen .carousel-slide img {
      width: 100%;
      height: auto;
      display: block;
    }

    .slide-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #ffffff;
      text-align: center;
      padding: 0 20px;
      width: 100%;
      max-width: 800px;
    }

    .slide-title,
    .slide-text,
    .slide-btn {
      opacity: 0;
      transform: translateY(20px);
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .slide-title {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
      animation: fadeInUp 1s ease forwards;
      animation-delay: 0.5s;
    }
    .slide-text {
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      animation: fadeInUp 1s ease forwards;
      animation-delay: 1s;
    }
    .slide-btn {
      display: inline-block;
      padding: 12px 30px;
      background-color: #ff6b6b;
      color: #fff;
      text-decoration: none;
      border-radius: 4px;
      font-weight: bold;
      animation: fadeInUp 1s ease forwards;
      animation-delay: 1.5s;
      transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    }
    .slide-btn:hover {
      transform: translateY(-3px);
      background-color: #ff5252;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    /* Prev/Next arrows */
    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 2rem;
      color: #fff;
      background: rgba(0,0,0,0.3);
      padding: 0.5rem 1rem;
      cursor: pointer;
      user-select: none;
      z-index: 10;
    }
    .arrow.prev {
      left: 10px;
    }
    .arrow.next {
      right: 10px;
    }
/*-------------------end carosal---*/
/*** Header Carousel End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}

.bg-breadcrumb .bg-breadcrumb-single {
    position: absolute;
    width: 500px;
    height: 1200px;
    top: 0px;
    left: 0;
    margin-left: 30px;
    transform: rotate(-30deg);
    background: var(--bs-dark);
    animation: RotateMoveLeft 5s linear infinite;
    opacity: 0.7;
    z-index: 2 !important;
}


.bg-breadcrumb::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
    border-radius: 200px;
    border: 80px solid rgba(68, 210, 246, 0.2);
    animation: RotateMoveCircle 10s linear infinite;
    background: transparent;
    z-index: 2 !important;
}

@keyframes RotateMoveCircle {
    0% {top: -200px;}
    50%   {right: -100px;}
    75%   {top: -100px;}
    100%  {top: -200px;}
}


.bg-breadcrumb::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 1200px;
    top: -150px;
    left: 0;
    margin-left: 160px;
    transform: rotate(-30deg);
    background: rgba(68, 210, 246, 0.2);
    animation: RotateMoveRight 5s linear infinite;
    z-index: 2 !important;
}
/*** Single Page Hero Header End ***/



/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.3);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}

.service .service-item .service-img::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    right: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(68, 210, 246, 0.4);
    transition: 0.5s;
}

.service .service-item:hover .service-img::after {
    width: 100% !important;
    height: 100% !important;
}

.service .service-item .service-content {
    position: relative;
}

.service .service-item .service-content::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    width: 100% !important;
    height: 100% !important;
}

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover .service-content .service-content-inner a.h4 {
    color: var(--bs-white) !important;
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner a.h4:hover {
    color: var(--bs-primary) !important;
}
/*** Service End ***/

/*** Project Start ***/
.project .project-carousel.owl-carousel {
    height: 100%;
}

.project .project-carousel .project-item {
    position: relative;
    overflow: hidden;
}

.project .project-carousel .project-item .project-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.project .project-carousel .project-item .project-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(14, 19, 20, 0.2);
    transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-img::after {
    height: 100%;
}

.project .project-carousel .project-item .project-img img {
    transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-img img {
    transform: scale(1.2);
}

.project .project-carousel .project-item .project-content {
    position: relative;
    width: 75%;
    height: 100%;
    bottom: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.project .project-carousel .project-item .project-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px !important;
    background: var(--bs-dark);
    transition: 0.5s;
}

.project .project-carousel .project-item .project-content .project-content-inner {
    position: relative;
    z-index: 2;
}

.project .project-carousel .project-item:hover .project-content .project-content-inner p,
.project .project-carousel .project-item:hover .project-content .project-content-inner a.h4,
.project .project-carousel .project-item:hover .project-content .project-content-inner .project-icon i {
    color: var(--bs-white) !important;
    transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-content .project-content-inner a.h4:hover {
    color: var(--bs-primary) !important;
}

.project .project-carousel .project-item:hover .project-content::after {
    height: 100%;
}

.project-carousel .owl-dots {
    position: absolute;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -120px;
    transition: 0.5s;
}

.project-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-right: 15px;
    background: var(--bs-dark);
    transition: 0.5s;
}

.project-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 40px;
    border: 8px solid var(--bs-primary);
}
/*** Project End ***/

/*** Blog Start ***/
.blog .blog-item .project-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .project-img .blog-plus-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(68, 210, 246, 0.2);
    transition: 0.5s;
    opacity: 0;
}

.blog .blog-item:hover .project-img .blog-plus-icon {
    opacity: 1;
}

.blog .blog-item .project-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .project-img img {
    transform: scale(1.3);
}

/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--bs-dark);
    transition: 0.5s;
}

.team .team-item:hover {
    border: none !important;
}

.team .team-item::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    border: 1px solid;
    border-color: var(--bs-primary) transparent transparent var(--bs-primary) !important;
    z-index: 5;
    transition: 1s;
    opacity: 0;
}

.team .team-item::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 10px;
    border: 1px solid;
    border-color: transparent var(--bs-primary) var(--bs-primary) transparent !important;
    z-index: 5;
    transition: 1s;
    opacity: 0;
}

.team .team-item:hover:after,
.team .team-item:hover::before {
    width: 100% !important;
    height: 100% !important;
    opacity: 1;
}

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(68, 210, 246, 0.2);
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 8;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon .team-icon-share {
    position: relative;
    margin-top: -200px;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon .team-icon-share {
    margin-top: 0 !important;
}

.team .team-item .team-content {
    position: relative;
}

.team .team-item .team-content::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bs-primary) !important;
    transition: 0.5s;
}

.team .team-item .team-content::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary) !important;
    transition: 0.5s;
}

.team .team-item:hover .team-content::after,
.team .team-item:hover .team-content::before {
    width: 100% !important;
    height: 50% !important;
}

.team .team-item:hover .team-content .team-content-inner {
    position: relative;
    color: var(--bs-white);
    z-index: 2;
}

.team .team-item .team-content .team-content-inner h4,
.team .team-item .team-content .team-content-inner p {
    transition: 0.5s;
}

.team .team-item:hover .team-content .team-content-inner p {
    color: var(--bs-white) !important;
}

.team .team-item:hover .team-content .team-content-inner h4 {
    color: var(--bs-dark) !important;
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}
/*** Testimonial End ***/

/*** FAQ'S Start ***/
.faq {
    position: relative;
    overflow: hidden;
}

.faq::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../img/bg.png);
    object-fit: cover;
    z-index: -1;
}

.faq .faq-img {
    position: relative;
}

.faq .faq-img .faq-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

/*** FAQ'S End ***/

/*** Footer Start ***/
.footer-dark {
    background-image: url('../img/footer.jpeg');
    background-position: center center;   /* center horizontally & vertically */
    background-size: cover;               /* make image cover entire footer */
    background-repeat: no-repeat;         /* prevent tiling */
    width: 100%;
    min-height: 200px;                    /* adjust as needed */
}

/* Optional: ensure good spacing on mobile */
@media (max-width: 767px) {
    .footer-dark {
        min-height: 150px;                /* smaller height on phones */
        background-position: center top;  /* focus top of image on narrow screens */
    }
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0e87c9;
}

.footer-link, 
.footer-links li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links li a:hover {
    color: #0e87c9;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1a1f25;
    color: #ffffff;
    font-size: 18px;
    transition: 0.3s;
}

.social:hover {
    background: #0e87c9;
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}


/*missinon vison section */
/* ==============
   Mission + Vision Section
   ============== */

/* Section heading */
.intro-box h3.thm-color {
    font-family: 'branding', sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: #0099e4;
    text-align: center;
    margin-bottom: 30px;
}

/* Divider style */
.section-divider {
    border: 0;
    border-top: 2px solid #ddd;
    margin: 30px 0;
}

/* Base card style */
.mission-vision-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 35px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for cards */
.mission-vision-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Big centered icons */
.mission-vision-card .icon-wrapper {
    text-align: center;
    font-size: 60px;    /* large icon */
    color: #0099e4;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

/* Icon hover color change */
.mission-vision-card:hover .icon-wrapper {
    color: #005fa3;
}

/* Card heading */
.mission-vision-card h3.thm-color {
    font-family: 'branding', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #0099e4;
    text-align: center;
    margin-bottom: 15px;
}

/* Card text */
.mission-vision-card p {
    font-family: 'branding', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

/* ==============
   Values List
   ============== */
.values-grid {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: start;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 45%; /* two columns but wraps */
    min-width: 200px;
    margin-bottom: 8px;
}

.value-icon i {
    font-size: 28px;
    color: #0099e4;
}

.value-text {
    font-family: 'branding', sans-serif;
    font-size: 16px;
    color: #444;
    font-weight: 500;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .values-grid {
        flex-direction: column;
    }
    .value-item {
        flex: 1 1 100%;
    }
}

/*missinon vison section end */
/*COntact page section end */
/* =============================
   Contact / Testimonial Section
   ============================= */

/* FORM SECTION */
.testimonial-section-one {
    padding: 60px 0;
    background: #fff;
}

/* Section titles */
.testimonial-section-one .section-title h2 {
    font-family: 'branding', sans-serif;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #0099e4;
}

/* Form area */
.default-form-area {
    background: #fdfdfd;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.default-form .form-control {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 12px 15px;
    font-family: 'branding', sans-serif;
    font-size: 16px;
    transition: 0.3s ease;
}

.default-form .form-control:focus {
    border-color: #0099e4;
    box-shadow: none;
}

/* CAPTCHA row */
.default-form .note {
    font-size: 13px;
    color: #555;
    margin-top: 6px;
}

#captcha-img {
    border: 1px solid #ccc;
    border-radius: 6px;
    width: auto;
}

/* Buttons */
.default-form button,
.default-form .thm-btn {
    background: #0099e4;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-family: 'branding', sans-serif;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

.default-form button:hover,
.default-form .thm-btn:hover {
    background: #0077b8;
    color: #fff;
}

/* ALIGN captcha + input group */
.form-group > div[style*="display:flex"] {
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.form-group > div[style*="display:flex"] input {
    flex: 1;
    min-width: 200px;
}

/* ==============================
   QUICK CONTACT SIDEBAR
   ============================== */

.quick-contact .section-title h2 {
    font-weight: bold;
    color: #0099e4;
}

.quick-contact .content {
    background: #fafafa;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.quick-contact .content .text p {
    font-family: 'branding', sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}

/* Contact info list */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'branding', sans-serif;
    font-size: 15px;
    color: #222;
    margin-bottom: 10px;
}

.contact-info li i {
    font-size: 18px;
    color: #0099e4;
}

/* Social icons */
.social-icon {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 12px;
}

.social-icon li a {
    display: inline-block;
    background: #0099e4;
    color: #fff;
    width: 38px;
    height: 38px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    font-size: 16px;
    transition: 0.3s ease;
}

.social-icon li a:hover {
    background: #0077b8;
    color: #fff;
}

/* ==============================
   GOOGLE MAP
   ============================== */

.home-google-maps {
    margin-top: 40px;
}

.home-google-maps .google-maps iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/*contact page section end */
