* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* header section start */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color:black;
}

.header-section {
    /*background: url(/images/head.jpg)  repeat-y orange;*/
    background:#061837;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    width: 100%;
    height: 80px;
    margin-top:-15px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container .logo img {
    width: 60px;
    margin-top:20px;
    margin-left: 15px;
    
}

.logo-container span {
    color: white;
    margin-top:20px;
}

.information-section {
    position: absolute;
    display: grid;
    top: 10px;
    left: 30%;
}

.information-section ul {
    font-size: 20px;
    justify-content: space-between;
    gap: 10px;
    font-weight: bold;
}

.information-section li {
    display: inline;
    margin-right: 20px;

}

.information-section i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    background-color: #007BFF;
    /* set your desired background color */
    border-radius: 50%;
    color: #fff;
    /* set your desired icon color */
    transition: transform 0.3s ease, background-color 0.3s ease;
    font-size: 16px;
}

.information-section a {
    text-decoration: none;
}

.information-section a:hover {
    text-decoration: underline;
}

.information-section i:hover {
    transform: rotate(20deg) scale(1.1);
    background-color: #0056b3;
    /* darker blue on hover */
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 20px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    position: relative;
    transition: color 0.3s ease;
}

nav a:hover {
   
   text-shadow:1px 1px 10px;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #007BFF;
}

.dropdown {
    position: relative;
}

.dropdown i {
    color: white;
}

.dropdown-content {
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    padding: 10px 0;
    min-width: 150px;
    transition: all 0.3s ease;
    z-index: 5;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.dropdown-content a {
    padding: 10px 20px;
    white-space: nowrap;
    color: #333;
}

.dropdown-content a:hover {
    background-color: rgba(250, 253, 255, 0.721);
}

/* 
.quote-btn {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 71px;
    left: -1%;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.quote-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.quote-btn:hover::before {
    left: 100%;
}

.quote-btn:hover {
    background-color: #0c78ec;
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 123, 255, 0.4);
} */


.quote-btn {
    padding: 10px 20px;
    background: linear-gradient(to right, #e55b1b 50%, white 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    color: black;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: background-position 0.3s ease;
    margin-top: 15px;
    left: -1%;
    position: relative;
    overflow: hidden;
}

.quote-btn:hover {
    background-position: left bottom;
    color: white; /* Optional: text color change on hover */
}



.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background: #333;
}

/* Sidebar styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    height: auot;
    width: 200px;
    background: rgba(0, 29, 74, 0.9);


    

    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 100;
    border-radius :20px;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-section {
    margin-top: 50px;
}

.mobile-menu .mobile-menu-section a {
    display: block;
    text-decoration: none;
    color:white;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.services-dropdown {
    display: none;
    padding-left: 15px;
    margin-top: 10px;
}

.services-dropdown a {
    display: block;
    color:white;
     /*border-bottom: 1px solid #eee;*/
    font-size: 1rem;
    margin-bottom: 8px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 35px;
    font-size: 34px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .header-section {
        padding: 15px 30px;
        background: url(/images/headerBg.png) -172px 100px repeat-x #001d4a;
        background-size: cover;
        border: none;
    }

    .information-section {
        display: none;
    }

    .logo-container span {
        color: #fff;
    }

    nav,
    .quote-btn {
        display: none;
    }

    .hamburger {
        display: flex;
        background-color: white;
    }
}

/* header section end */



/*       Right icons section     */


.icons {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
    z-index: 1000;
}

.icons::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #FFD700, #FF8C00);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 5px;
}

.icons:hover::before {
    opacity: 1;
}

.icon {
    background-color: #007BFF;
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.icon:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, #FF8C00, #FFD700);
    transition: all 0.4s ease;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: -1;
    border-radius: 50%;
}

.icon:hover {
    background-color: #0056b3;
    transform: scale(1.2) translateX(-20px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #FFD700;
    border: 2px solid #FFD700;
}

.icon:hover:before {
    transform: translate(-50%, -50%) scale(1.2) rotate(45deg);
}

.icon a {
    color: white;
    z-index: 1;
    text-decoration: none;
}

.icon i {
    font-size: 22px;
    transition: color 0.3s ease;
    z-index: 1;
}

.icon:hover i {
    color: #fff;
}

/* Corrected animation name */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1.3);
    }

    100% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
}

@media(max-width: 768px) {
    .icons {
        display: none;
    }
}


/*          Right  icons section end    */




/* about section CSS Styling */
.about-us {
    background: #f8f9fa;
    /*padding: 60px 20px;*/
    font-family: 'Segoe UI', sans-serif;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));

}

.about-text {
    padding: 20px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #222;
}

.about-text h2 span {
    color: #005eff;
}

.about-text p {
    font-size: 1rem;
    margin: 15px 0;
    color: #2a2828;
}

.mission-vision {
    display: flex;
    flex-wrap: wrap;

}

.mission-vision h3 {
    color: #005eff;
    margin-bottom: 5px;
}

/* .learn-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background: #005eff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
} */

/* .learn-btn:hover {
    background: #003fc0;
} */

.learn-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: linear-gradient(to right, #0097a7 50%, #00bcd4 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background-position 0.4s ease;
}

.learn-btn:hover {
    background-position: left bottom;
}

.about-media {
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    position: relative;
}

.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
}

.about-media .project {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background-color: white;
    text-align: left;
    padding: 10px 20px;
    border-radius: 10px;
}

.about-media .project h2 {
    text-transform: capitalize;
    color: rgb(76, 75, 75);
}

.about-media .project h2 span {
    font-size: 40px;
    color: rgb(97, 97, 247);
}

@media (max-width:768px) {
    .about-media .project h2 {
        font-size: 22px;
    }

    .about-media .project h2 span {
        font-size: 30px;
    }
}


.fixed-bg-section {
    height: 100vh;
    background-image: url('/images/img6.jpg');
    /* Replace with your image */
    background-attachment: fixed;
    /* 💥 Magic for fixed bg */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

/*@media (max-width:768px) {*/
/*  .fixed-bg-section {*/
/*    height: auto;  */
/*}*/
.fixed-bg-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Overlay */
    z-index: 1;
}





.overlay-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    animation: fadeIn 1.5s ease-in-out;
    text-align: left;
}

.overlay-content h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.overlay-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.card-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}


.service-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #00bcd4;
    padding: 15px 25px;
    border-radius: 8px;
    flex: 1 1 200px;
    overflow: hidden;
    backdrop-filter: blur(2px);
    transition: all 0.5s ease;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, #00bcd4, #fff, #00bcd4);
    animation: swirl 8s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.service-card:hover {
    transform: rotateX(4deg) rotateY(-4deg) scale(1.05);
    background-color: rgba(0, 188, 212, 0.08);
    /* box-shadow: 0 12px 30px rgba(0, 188, 212, 0.4); */
    backdrop-filter: blur(6px);
}

.service-card:hover::before {
    opacity: 0.25;
}

.service-card:hover::after {
    opacity: 0.3;
}

@keyframes swirl {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 
.service-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid transparent;
    padding: 15px 25px;
    border-radius: 8px;
    flex: 1 1 200px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.6s ease;
    backdrop-filter: blur(4px);
    border-image: linear-gradient(180deg, #00bcd4, #ffffff, #00bcd4) 1;
}

.service-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, #00bcd4, #ffffff, #00bcd4, #ffffff);
    background-size: 400% 400%;
    animation: aurora 10s ease infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.service-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-25deg);
    transition: none;
    z-index: 2;
    opacity: 0;
}

.service-card:hover {
    transform: scale(1.05) rotateZ(1deg);
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.4);
    background-color: rgba(0, 188, 212, 0.07);
    border-left: 4px solid transparent;
}

.service-card:hover::before {
    opacity: 0.3;
}

.service-card:hover::after {
    animation: shine 1.5s ease forwards;
    opacity: 1;
}

@keyframes aurora {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shine {
    0% { left: -75%; opacity: 0; }
    50% { left: 100%; opacity: 1; }
    100% { left: 100%; opacity: 0; }
} */



.service-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #00e5ff;
}

.service-card p {
    font-size: 14px;
    color: #eee;
}

/* .cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #00bcd4;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background-color: #0097a7;
} */
.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: linear-gradient(to right, #0097a7 50%, #00bcd4 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background-position 0.4s ease;
}

.cta-btn:hover {
    background-position: left bottom;
}
  
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width:768px) {
    .overlay-content {
        padding: 0 20px;
    }
}



/* service section */


.branches-section {
    text-align: center;
    padding: 20px 30px;
    /* background: #f9f9f9; */
    max-width: 1200px;
    margin: 0 auto;
}

.branches-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.section-title {
    font-size: 2.2rem;
    text-align: left;
}

.section-subtitle {
    text-align: left;
}

.slider-arrows {
    display: none;
    gap: 10px;
}

.arrow {
    cursor: pointer;
    font-size: 24px;
    background: #eee;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background 0.3s;
}

.arrow:hover {
    background: #ddd;
}

.branches-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.branches-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.branch-card {
    background: #fff;
    border: 0.3px solid rgb(230, 229, 229);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 2px 4px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
    min-width: 100%;
    box-sizing: border-box;
}

.branch-card:hover {
    transform: scale(1.03);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.branch-card img {
    height: 60px;
    margin-bottom: 15px;
}

.branch-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.branch-card ul {
    padding-left: 20px;
    margin: 10px 0;
    color: #444;
}

.branch-card li {
    margin-bottom: 5px;
}

/* .learn-more {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: underline;
} */
.learn-more {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

/* Add a hover effect */
.learn-more:hover {
    color: #0056b3;
    transform: translateY(-2px);
}

/* Optional effect: animated underline */
.learn-more::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #0056b3;
    transition: width 0.3s ease;
}

.learn-more:hover::after {
    width: 100%;
}

/* Style the icon if there is one */
.learn-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(3px);
}

/* Responsive Slider Logic */
@media (min-width: 768px) {
    .branch-card {
        min-width: calc(50% - 20px);
    }
}

@media (min-width: 1024px) {
    .branch-card {
        min-width: calc(33.33% - 20px);
    }
}

/* services seciton end */


/* news section start */

.news-section {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 20px 30px;
    box-sizing: border-box;
}

.news-section h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 20px;
    color: blue;
}

.news-container {
    position: relative;
    width: 100%;
    height: 250px;
    /* Default height */
    overflow: hidden;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
}

.news-content {
    position: absolute;
    left: 20%;
    bottom: 0;
    animation: newsScroll 10s linear infinite;
    padding: 0 16px;
}

.news-content p {
    margin: 10px 0;
    padding: 0;
    font-size: 16px;
    color: #1919f0;
    line-height: 1.5;
}

.news-content p button {
    padding: 6px 12px;
    background-color: rgb(210, 8, 8);
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;


}

.news-content:hover {
    animation-play-state: paused;
    cursor: pointer;
}

@keyframes newsScroll {
    0% {
        bottom: -100%;
        /* Start from bottom outside the container */
    }

    100% {
        bottom: 100%;
        /* Move up through the container */
    }
}

/* Tablet view adjustments */
@media screen and (max-width: 768px) {
    .news-container {
        height: 200px;
        /* Reduce height for tablets */
    }

    .news-content {
        left: 10%;
    }

    .news-content p {
        font-size: 14px;
        /* Slightly smaller font size */
        margin: 8px 0;
    }
}

/* Mobile view adjustments */
@media screen and (max-width: 480px) {
    .news-container {
        height: 150px;
        /* Reduce height for mobiles */
    }

    .news-content {
        padding: 0 8px;
        left: 5%;
    }

    .news-content p {
        font-size: 12px;
        /* Smaller font size for mobiles */
        margin: 6px 0;
    }
}

/* news section end */

/* testimonial section start */

.testimonial-section {
    max-width: 1200px;
    margin: auto;
    padding: 20px 30px;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.testimonial-header h2 {
    font-size: 32px;
    color: #333;
}

.testimonial-buttons {
    display: flex;
    gap: 10px;
}

.testimonial-buttons button {
    background-color: #dddddd;
    color: #413e3e;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s;
}

.testimonial-buttons button:hover {
    background-color: #555;
    color: white;
}

.testimonial-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  padding: 20px;
  border-radius: 10px;
  margin: 0 10px;
  min-width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex: 0 0 calc(33.333% - 20px);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* Orange circular border and hover */
.testimonial-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 6px solid orange;
    transition: 0.5s ease;
}

.testimonial-card:hover img {
    border-color: #ff7f50; /* Coral or hover orange shade */
    transform: scale(1.3) ;
}

.testimonial-card h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 5px;
}

.testimonial-designation {
    font-size: 14px;
     color:black;
   
    margin-bottom: 10px;
}

.testimonial-feedback {
   
    font-size: 16px;
    color: #555;
    font-style: italic;
}

/* Tablet View */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 20px);
        /* 2 cards on tablet */
    }
}

/* Mobile View */
@media (max-width: 600px) {
    .testimonial-card {
        flex: 0 0 100%;
        /* 1 card on mobile */
    }
}

/* testimonial section end */

/* footer section start */
/* .footer {
    background: #02182f;
    color: #f1f1f1;
    padding: 50px 20px 20px;
    margin-top: 30px;
}

.footer-container {
    display: flex;
}

.footer-container>div {
    flex: 1 1 220px;
    margin: 20px;
}

.footer-container h3 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
    color: #00aaff;
    text-transform: uppercase;
}

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

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

.footer-container ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-container ul li a:hover {
    color: #00aaff;
}

.footer-container ul li:hover {
    transform: translateX(5px);
}

.footer-branding img {
    width: 120px;
    margin-bottom: 15px;
}


.footer-contact p {
    margin-top: 5px;
}

.footer-contact p i {
    margin-right: 5px;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    text-decoration: none;
    font-size: 20px;
    background-color: rgb(241, 238, 238);
    color: black;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out, background-color 0.3s;
}

.social-icons a:hover {
    background-color: #f4c542;
    transform: scale(1.1);
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 10px;
    border-top: 1px solid #444;
    font-size: 14px;
}


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;

    }

    .footer-container>div {
        flex: 1 1 auto;
        margin: 20px;
    }
} */


.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px;
    margin-top: 20px;
    background-color: #061837;
}

.footer-container>div {
    flex: 1 1 200px;
    margin: 20px;
}

.logo .esdc-logo {
    width: 100%;
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.logo .footer-img {
    width: 100%;
    max-width: 160px;
    height: auto;
    display: block;
}

.social-icon ul {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    list-style-type: none;
}

.social-icon ul li a {
    font-size: 20px;
    color: white;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.social-icon ul li i {
    height: 50px;
    width: 50px;
    background-color: blue;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

.social-icon ul li i:hover {
    background-color: #d4cd00;
    color: #fff;
    transform: scale(1.1);
    transition: all 0.3s ease;
}


.sources-links ul,
.useful-links ul {
    list-style: none;
    padding: 0;
}

.sources-links ul li,
.useful-links ul li {
    margin: 10px 0;
}

.sources-links ul li a,
.useful-links ul li a {
    color: rgb(204, 204, 204);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.sources-links ul li a i,
.useful-links ul li a i {
    margin-right: 8px;
}

.sources-links h1,
.useful-links h1,
.address-links h1 {
    font-size: 2rem;
    color: rgb(0, 170, 255);
    margin: 10px auto;
}

.sources-links ul li a,
.useful-links ul li a,
.address-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.sources-links ul li a:hover,
.useful-links ul li a:hover {
    color: #00aaff;
}

.sources-links ul li:hover,
.useful-links ul li:hover {
    transform: translateX(5px);
}

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

.address-links ul li {
    display: flex;
    align-items: center;
    color: #ccc;
    font-size: 16px;
    margin-bottom: 10px;
    cursor: pointer;
}

.address-links ul li i {
    margin-right: 10px;
    color: #ccc;
    /* Optional: icon color */
    font-size: 18px;
}

/* .social-icon ul {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon ul li a {
    font-size: 20px;
    color: white;
    transition: transform 0.3s ease;
}

.social-icon ul li i {
    height: 50px;
    width: 50px;
    background-color: blue;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

.social-icon ul li i:hover {
    background-color: #d4cd00;
    color: #fff;
    transform: scale(1.1);
    transition: all 0.3s ease;
} */

.footer-bottom {
    background-color: #061837;
    text-align: center;
    padding: 10px;
    border-top: 1px solid #fff;
    font-size: 14px;
    margin-bottom:40px;
}

.footer-bottom p {
    color: #fff;
    padding: 10px;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 480px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-container>div {
        margin: 20px 0;
    }

    .logo {
        text-align: left;
    }

    .social-icon ul {
        justify-content: left;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-container>div {
        margin: 20px 0;
    }

    .social-icon ul {
        justify-content: left;
    }
}

/* footer section end   */



/* Job Cards */

.career-intro {
    text-align: center;
    padding: 2rem;
    color: rgb(50, 50, 50);
}

.job-list {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 1rem;
}

.job-card {
    background: #fff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 0.5px solid rgb(177, 175, 175);
}

.job-card:hover {
    transform: translateY(-5px);
    transform: scale(1.01);
}

.job-card h2 {
    margin-bottom: 1rem;
}

.job-card p {
    margin: 0.5rem 0;
}

/* .apply-btn {
    margin-top: 1rem;
    padding: 10px 20px;
    background-color: #0077cc;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.apply-btn:hover {
    background-color: #005fa3;
} */

.show-buttons button {
    padding: 10px 20px;
    background: linear-gradient(to right, #0a63bd 50%, #001d4a 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-position 0.3s ease;
}

.show-buttons button:hover {
    background-position: left bottom;
}


.apply-btn {
    padding: 10px 20px;
    background: linear-gradient(to right, #0077cc 50%, #005fa3 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-position 0.3s ease;
}

.apply-btn:hover {
    background-position: left bottom;
}



/* Show More Buttons */
.show-buttons {
    text-align: center;
    margin: 2rem 0;
}

/* .show-buttons button {
    margin: 0.5rem;
    padding: 10px 20px;
    background-color: #003366;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.show-buttons button:hover {
    background-color: #001d4a;
} */

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-box {
    background: white;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-box h2 {
    margin-bottom: 8px;
}

.row {
    display: flex;
    gap: 10px;

}

.row .col {
    width: 100%;
}

.modal-box form input,
.modal-box form textarea {
    width: 100%;
    padding: 10px;
    margin: 0.8rem 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* .modal-box form button {
    padding: 10px 20px;
    background-color: #0077cc;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.modal-box form button:hover {
    background-color: #005fa3;
} */

.modal-box form button {
    padding: 10px 20px;
    background-color: #0077cc;
    background-image: linear-gradient(to right, #005fa3 0%, #005fa3 100%);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    background-position: center;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-size 0.3s ease;
  }
  
  .modal-box form button:hover {
    background-size: 100% 100%;
  }
  
  

/* Responsive */
@media (max-width: 600px) {
    .job-card {
        padding: 1rem;
    }

    .modal-box {
        padding: 1rem;
    }

    .row {
        flex-direction: column;
    }
}

/* who we are section start  */
.who-we-are {
    padding: 20px 20px;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', sans-serif;
}

.who-we-are .container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    gap: 40px;
}

/* Left Image Box */
.image-box {
    position: relative;
    flex: 1 1 400px;
    min-width: 280px;
}

.image-box img {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: white;
    color: #333;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 8px 8px 8px 8px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.experience-badge span {
    color: rgb(74, 74, 221);
    font-size: 40px;
}


/* Right Content Box */
.content-box {
    flex: 1 1 500px;
    min-width: 280px;
}

.content-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
}

.content-box p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #444;
}

.content-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.content-box li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #333;
}

.content-box li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .who-we-are .container {
        flex-direction: column;
        text-align: center;
    }

    .experience-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -10px;
        border-radius: 10px;
    }
}

/* who we are section end   */


/* why choose us section start */

.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.why-choose-section {
    background-color: #f9f9f9;
}

.why-choose-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

/* Left Image */
.why-image {
    flex: 1 1 500px;
    position: relative;
}

.why-image img {
    width: 100%;
    border-radius: 12px;
}

.experience-tag {
    position: absolute;
    bottom: 0;
    right: 10px;
    background-color: white;
    padding: 10px 20px;
    font-weight: bold;
    color: #2d3436;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px 0 0 0;
}

/* Right Content */
.why-content {
    flex: 1 1 500px;
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00b894;
}

.why-content h2 span {
    color: #2d3436;
}

.why-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.why-content ul {
    list-style: none;
}

.why-content ul li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    position: relative;
    padding-left: 25px;
    color: #2d3436;
}

.why-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00b894;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-wrapper {
        flex-direction: column;
    }

    .why-content h2 {
        font-size: 2rem;
    }

    .experience-tag {
        bottom: 10px;
        right: 10px;
        font-size: 0.9rem;
    }
}

/* why choose us section end */


/* branches services section start */
.bgs-services-section {
    background: #f1f6f9;
    padding:20px 20px;
    text-align: center;
}

.bgs-services-header h2 {
    font-size: 2.5rem;
    color: #0a3d62;
}

.bgs-services-header h2 span {
    color: #00a8ff;
}

.bgs-services-header p {
    margin: 20px auto;
    max-width: 700px;
    color: #555;
    font-size: 1.1rem;
}

.bgs-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.bgs-service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    flex: 1 1 280px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.bgs-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bgs-service-card h3 {
    color: #0077b6;
    margin-bottom: 15px;
}

.bgs-service-card p {
    color: #444;
    font-size: 1rem;
}

.bgs-service-cta {
    margin-top: 40px;
}

/* .bgs-service-cta a {
    background: #0077b6;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.bgs-service-cta a:hover {
    background: #005b94;
} */
.bgs-service-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: linear-gradient(to right, #0097a7 50%, #00bcd4 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background-position 0.4s ease;
}

.bgs-service-cta a {
    text-decoration: none;
    color: #fff;
}

.bgs-service-cta:hover {
    background-position: left bottom;
}

/* Responsive */
@media (max-width: 768px) {
    .bgs-services-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* branches services section end */


/*     disclaimer    */

.disclaimer-head h1 {
    text-align: center;
    margin: 20px;
    color: rgba(41, 41, 44, 0.788);
}

.discalimer-container {
    width: 90%;
    margin: 30px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(34, 32, 32, 0.1);
    border-radius: 8px;
}

.disclaimer-box h2 {
    font-size: 1.4rem;
    margin: 5px auto;
    color: #1c1069c9;
}

.disclaimer-box p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 400;
}

@media (max-width: 768px) {


    .discalimer-container {
        margin: 20px;
        padding: 15px;
    }

    .disclaimer-box h1 {
        font-size: 1.2rem;
    }

    .disclaimer-box p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .discalimer-container {
        margin: 15px;
        padding: 10px;
    }

    .disclaimer-box h1 {
        font-size: 1.1rem;
    }

    .disclaimer-box p {
        font-size: 0.9rem;
    }
}

/*    disclaimer page end      */

/*    privacy-policy    */


.privacy-head h1 {
    text-align: center;
    margin: 20px;
    color: rgba(95, 95, 100, 0.788);
}

.privacy-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.privacy-section {
    margin-bottom: 30px;
}

.privacy-section h2 {
    font-size: 1.4rem;
    color: #1a098ec9;
}

.privacy-section p {
    font-size: 1rem;
    margin-top: 10px;
    color: #555;
}

.privacy-section ul {
    list-style-type: circle;
    font-size: 1rem;
}

.privacy-section li {
    margin-bottom: 8px;
    margin: 0 0 10px 20px;
    color: #555;
}

@media (max-width: 768px) {
    .privacy-section h2 {
        font-size: 1.2rem;
        margin: 15px;
    }

    .privacy-section p {
        font-size: 0.95rem;
        margin: 0 15px 10px;
    }

    .privacy-section ul {
        margin-left: 20px;
    }

    .privacy-section ul li {
        font-size: 0.95rem;
    }
}

/*       privacy page end    */

/*  terms & conditions    */

.terms-container {
    width: 90%;
    margin: 50px auto;
    padding: 20px;
    font-size: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.terms-container h1 {
    text-align: center;
    font-size: 2rem;
    color: rgba(34, 34, 37, 0.788);
    margin-bottom: 20px;
}

.terms-container p {
    line-height: 1.6;
    color: #343131;
    font-weight: 400;
    font-size: 1rem;
}

.terms-container h2 {
    font-size: 1.3rem;
    margin-bottom: 0px;
    color: #1a098ec9;

}

.terms-section h2 {
    margin-top: 20px;
    color: rgba(6, 6, 74, 0.833);
}

.terms-section {
    color: #333;
}

.terms-section ul {
    list-style-type: none;
    margin-left: -20px;
    font-size: 1rem;
}

.terms-section ul li {
    margin-bottom: 8px;
    margin: 0 0 10px 20px;
    color: #333;

}

@media (max-width: 768px) {
    .terms-container {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .terms-container {
        width: 95%;
        padding: 15px;
    }
}

/*           terms & conditions   end   */

/* faq page start */

.faq-head h1 {
    text-align: center;
    margin: 40px;
    color: rgba(95, 95, 100, 0.788);
}

.faq-container {
    width: 80%;
    margin: 20px auto;
}

.faq-item {
    background: white;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.faq-question {
    padding: 20px;
    background: #454e7e;
    color: white;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #334291;
}

.faq-answer {
    display: none;
    padding: 20px;
    background: #fff;
    font-size: 16px;
    border-top: 1px solid #ddd;
}

@media (max-width: 768px) {


    .faq-question {
        font-size: 16px;
        padding: 12px;
    }

    .faq-answer {
        font-size: 14px;
        padding: 12px;
    }
}

/* faq page end */

/* gallery section start */

.img-container {
    width: 90%;
    margin: 0 auto;
    background-color: #f4f4f4;
    margin-top: 50px;
}

.img-container h2 {
    text-align: center;
    text-transform: capitalize;
    padding: 20px 0;
    font-size: 30px;
}

.img-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Default 3 images per row */
    gap: 20px;
    justify-items: center;
}

.img-container .img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background-color: white;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.img img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.img .overlay {
    position: absolute;
    bottom: -100%;
    /* Start hidden below the image */
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    transition: bottom 0.4s ease-in-out;
    /* Smooth upward animation */
}

.img:hover img {
    transform: scale(1.05);
}

.img:hover .overlay {
    bottom: 0;
    /* Move overlay to cover the image */
}

/* Responsive Tablet View */
@media (max-width: 1024px) {
    .img-box {
        grid-template-columns: repeat(2, 1fr);
        /* 2 images per row */
    }
}

/* Responsive Mobile View */
@media (max-width: 768px) {
    .img-box {
        grid-template-columns: 1fr;
        /* 1 image per row */
    }

    .img-container {
        width: 95%;
    }
}

/* gallery section end */

/* contact section start */

.contact-section {
    display: flex;
    flex-wrap: wrap;
    width: 80%;

    margin: 40px auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}


.contact-left {
    flex: 1;
    background: url('https://images.unsplash.com/photo-1492724441997-5dc865305da7') center/cover no-repeat;
    color: #fff;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.contact-info {
    position: relative;
    z-index: 2;
    text-align: justify;
    margin-bottom:80px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info p {
    margin: 8px 0;
    font-size: 16px;
}

.contact-right {
    flex: 1;
    background-color: #fff;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-right h2 {
    margin-bottom: 30px;
    color: #333;
    font-size: 28px;
}

form input,
form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
}

form textarea {
    resize: vertical;
    min-height: 120px;
}

/* form button {
    width: 100%;
    padding: 14px;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background-color: #0056b3;
} */

form button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background: linear-gradient(to right, #0056b3 50%, #0056b3 50%);
    background-size: 0% 100%;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-size 0.3s ease;
    background-color: #007bff;
  }
  
  form button:hover {
    background-size: 100% 100%;
  }
  

@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        flex: none;
        width: 100%;
    }

    .contact-right {
        padding: 30px 20px;
    }

    .contact-info h2 {
        font-size: 26px;
    }

    form input,
    form textarea {
        font-size: 15px;
    }
}

.containerwhy {
  max-width: 1140px;       /* Same as Bootstrap's container-lg */
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

  .why-choose-us-section {
      padding: 60px 0;
      background-color: #fff;
      text-align: center;
    }

    .why-choose-us-title h2 {
      font-weight: 700;
      font-size: 32px;
      margin-bottom: 10px;
    }

    .why-choose-us-title p {
      font-size: 16px;
      color: #777;
      margin-bottom: 40px;
    }

    .why-choose-card {
      padding: 30px 20px;
      /* background: #d9e1f2; */
      border-radius: 12px;
      transition: 0.3s;
      
    }
.why-choose-card:hover{
    box-shadow: 10px 10px 15px rgb(67 59 59 );
}
    .why-choose-icon:hover {
      background-color: #0348a2;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .why-choose-icon {
      font-size: 50px;
      color: white;
      background: #5ba6f2;
      border-radius: 50%;
      padding: 25px 30px;
      margin-bottom: 20px;
      display: inline-block;
    }

    .why-choose-card h5 {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 15px;
    }

    .why-choose-card p {
      color: #373737;
      font-size: 15px;
      line-height: 1.6;
    }


/*===========================*/
  
    .fun-fact-section-with-animated-counter {
      padding: 60px 15px 30px;
      background-color: #fff;
      border-top: 1px solid #ddd;
      color: #333;
    }

    .fun-fact-container-wrapper {
      max-width: 1140px;
      margin: 0 auto;
    }

    .fun-fact-row-wrapper {
      display: flex;
      flex-wrap: wrap;
      margin-left: -15px;
      margin-right: -15px;
    }

    .fun-fact-single-column {
      width: 100%;
      padding: 15px;
      box-sizing: border-box;
    }

    @media(min-width: 768px) {
      .fun-fact-single-column {
        width: 50%;
      }
    }

    @media(min-width: 992px) {
      .fun-fact-single-column {
        width: 25%;
      }
    }

    .fun-fact-single-card {
      background: #f9f9f9;
      border-radius: 12px;
      padding: 30px 20px;
      box-shadow: 10px 10px 15px rgb(67 59 59 );
      text-align: center;
      transition: 0.3s ease;
    }

    .fun-fact-single-card:hover {
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .fun-fact-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: #5ba6f2;
  color: white;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.fun-fact-single-card:hover .fun-fact-icon-wrapper {
  background-color: #0348a2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

    .fun-fact-count-number {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: #222;
    }

    .fun-fact-label-heading {
      font-size: 1.125rem;
      font-weight: 600;
      margin: 0;
      color: #555;
    }





/* contact section end */