@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
:root{
    --maincolor:#66023c;
    --secondcolor:#f8a803;
    --thirdcolor:#f4ab01;
    --textcolor:#4A5764;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    overflow-x: hidden;
    
}

.navbar {
    background-color:white;
    padding: 1rem;
    position: relative;
    z-index: 10;
    padding: 1.5rem 7%;
    width: 100%;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    z-index: 1000;
   
  
}

.logo{
    width: 200px;
}
.logo img{
    width: 100%;
}
.navbar-container {
    display: flex;
    justify-content:space-around;
    align-items: center;
}

.brand {
    color:black;
    font-size: 1.5rem;
    text-decoration: none;
}

.nav-links {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
    margin-right: 10%;
    
}

.nav-item {
    margin: 0 1rem;
    position: relative;
}

.nav-item a {
    color: black;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
}

.nav-item a:hover {
    background-color:rgb(102,2,60);
    color: white;
    border-radius: 5px;
}

.nav-item a i {
    margin-right: 0.5rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(102,2,60);
    color: white;
    display: none;
    justify-content: space-between;
    padding: 1rem;
    border-radius: 5px;
    opacity: 0;
    transition: all 0.3s ease;
    width: 600px;
    z-index: 10;
    list-style-type: none;
  
}

.dropdown-left,
.dropdown-right {
    display: flex;
    flex-direction: column;
    width: 48%;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    padding: 0.7rem 0.2rem;
    display: flex;
    align-items: center;
     color: white;
}

.dropdown-menu li a:hover {
    background-color: white;
    color: black;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    color:#66023c;
}

.menu-toggle i {
    font-size: 1.5rem;
}
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        display: none;
        text-align: center;
        margin-right: 1%;
    }
    
.navbar{
    padding: 1.5rem 2%;
}
    .nav-item {
        margin: 0;
    }

    .navbar-container {
        flex-direction: row;
    }

    .dropdown-menu {
        width: 100%;
        flex-wrap: nowrap;
        position: static;
        transform: none;
        opacity: 1;
        list-style-type: none;
    }

    .dropdown-left
    {
        display: flex;
        flex-direction: column;
        width: 48%;
        margin: 0 ;
    }
    .dropdown-right 
    {
        display: flex;
        flex-direction: column;
        width: 52%;
        margin: 0 ;
    }

    .menu-toggle {
        display: block;
        margin-right: 10%;
    }

    .navbar-container.active .nav-links {
        display: flex;
    }
}


/* home */

/* Main container styling */
.main-home {
    padding: 2rem 7%;
    background-image: url(images/blurbg1.jpg);
    width: 100%;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Blinking text animation */
.blink {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 2.5em;
    animation: color-change 1s infinite;
    text-align: center;
}



/* Home section layout */
.home {
    display: flex;
    justify-content: space-between;
    align-items:normal;
    margin-top: 2rem;
    flex-wrap: nowrap; /* Ensure side-by-side layout */
    gap: 1rem;
}

.home-first h3 {
    font-size: large;
    color: #175e08;
    padding: 10px;
    padding-bottom: 30px;
    text-align: center;
}

.home .home-left-content {
    flex: 1 1 50%;
    padding: 10px;
}

.home-left-content h2 {
    font-size: 35px;
    margin: 1rem ;
    padding-top: 20px;
    text-align: center;
    padding-bottom: 4%!important;
   
}

.home-left-content p {
    font-size: 1.7rem;
    color: var(--textcolor);
    line-height: 3rem;
}

/* Button styling */
.glow-on-hover {
    width: 160px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 5px;
    margin-top: 30px;
    margin-left: 190px;
    font-size: 20px;
    text-decoration: none;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 1000% 0; }
    100% { background-position: 0 0; }
}

/* Right Side Swing Carousel CSS */
.home-right-content {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swing {
    position: relative;
    animation: swing ease-in-out 1s infinite alternate;
    transform-origin: center -20px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 400px; /* Adjust the max width */
    margin-top: 0; /* Remove top margin to align with content */
}

.swing img {
    border: 5px solid #f8f8f8;
    display: block;
    width: 100%; /* Ensure images take full width of the carousel */
}

.swing:after {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    border: 1px solid #999;
    top: -10px; left: 50%;
    z-index: 0;
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}

/* Carousel Specific CSS */
.carousel {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
}

@keyframes swing {
    0% { transform: rotate(3deg); }
    100% { transform: rotate(-3deg); }
}

/* Responsive Styling */
@media (max-width: 768px) {
    .home {
        flex-direction: column; /* Stack content vertically */
        align-items: flex-start; /* Align content to the start */
    }

    .home-left-content, .home-right-content {
        flex: 1 1 100%;
    }

    .home-left-content {
        margin-bottom: 2rem; /* Space between content and carousel */
        padding: 0 1rem; /* Reduce padding for mobile */
    }

    .swing {
        max-width: 80%; /* Ensure carousel fits the screen */
        margin-top: 0; /* Align carousel properly */
    }

    .home-left-content h2 {
        font-size: 36px; /* Adjust font size */
    }

    .home-left-content p {
        font-size: 1.5rem;
        line-height: 2.5rem; /* Improve readability */
    }

    .glow-on-hover {
        font-size: 18px;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .home-left-content h2 {
        font-size: 30px; /* Further adjust font size */
    }

    .home-left-content p {
        font-size: 1.2rem;
        line-height: 2rem;
    }

    .glow-on-hover {
        font-size: 16px;
        width: 140px;
        height: 45px;
    }
.blink{
    font-size:x-large;
    padding-left: 5px;
}
.home-left-content h2{
    font-size: xx-large;
    padding-left: 5px;
}
    .main-home {
        padding: 1rem 0; /* Reduce padding on smaller screens */
    }
    .glow-on-hover{
        margin-left: 30%;
    }

    .home-left-content {
        margin-bottom: 1rem; /* Reduce space between content and carousel on smaller screens */
    }

    .swing {
        margin-top: 1rem;
    }
}

/* technology */


.technology{
    padding: 10px;
}

.main-technology{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: -10px;
}
.inner-technology{
    flex: 1 1 300px;
    padding: 1rem 1rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-image: url(images/backgroung-pattern-1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    background-color: white;
    position: relative;
    z-index: 1;
}

.inner-technology span{
    width: 0;
    height: 100%;
    background-color: var(--maincolor);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: 0.5s;
    
}
.inner-technology:hover span{
    width: 100%;
}




.inner-technology:hover i{
    
    color: white;
}
.inner-technology:hover h2{
    color: white;
}
.inner-technology:hover p{
    color: white;
}
.inner-technology i{
    font-size: 28px;
    color: var(--maincolor);
}

.inner-technology h2{
    font-size: 1.5rem;
    padding: 10px;
}
.inner-technology p{
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 10px;
}






.counter-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

.counter-item {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: #fff;
    border: 10px solid transparent;
    transition: transform 0.3s ease;
}

.counter-item::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    top: -50%;
    left: -50%;
    z-index: 0;
    transition: background 0.3s ease;
}

.counter-item:hover {
    transform: scale(1.1);
}

.counter-item.red::before {
    background: rgba(255, 0, 0, 0.2);
}

.counter-item.orange::before {
    background: rgba(255, 165, 0, 0.2);
}

.counter-item.teal::before {
    background: rgba(0, 128, 128, 0.2);
}

.counter-item.purple::before {
    background: rgba(128, 0, 128, 0.2);
}

.counter {
    position: relative;
    z-index: 1;
}

.counter-value {
    font-size: 3em;
    font-weight: bold;
    color: #333;
}

.counter-item.red .counter-value {
    color: red;
}

.counter-item.orange .counter-value {
    color: orange;
}

.counter-item.teal .counter-value {
    color: teal;
}

.counter-item.purple .counter-value {
    color: purple;
}

.counter h3 {
    font-size: 1.2em;
    margin-top: 10px;
    color: #555;
}

.counter-item.red h3 {
    color: red;
}

.counter-item.orange h3 {
    color: orange;
}

.counter-item.teal h3 {
    color: teal;
}

.counter-item.purple h3 {
    color: purple;
}

@media (max-width: 1200px) {
    .counter-item {
        width: 180px;
        height: 180px;
    }

    .counter-value {
        font-size: 2.5em;
    }

    .counter h3 {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .counter-item {
        width: 150px;
        height: 150px;
    }

    .counter-value {
        font-size: 2em;
    }

    .counter h3 {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .counter-item {
        width: 120px;
        height: 120px;
    }

    .counter-value {
        font-size: 1.5em;
    }

    .counter h3 {
        font-size: 0.8em;
    }
}



/* About us section  */
.main-about{
    padding: 2rem 4%;
    width: 100%;
    background-image: url(images/backgroung-pattern-1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.heading{
    font-size: 25px;
    border-bottom: 2px solid var(--secondcolor);
    color: var(--maincolor);
    text-align: center;
    padding: 2rem 0;
    width: 800px;
    margin: 0 auto;
}

.main-about .about-heading{
    text-align: center;
    font-size: 40px;
    font-weight: bolder;
    color: var(--maincolor);
    border-bottom: 2px solid var(--secondcolor);
    width: 200px;
    margin: 0 auto;
    padding: 1rem 0;
}

.inner-main-about{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.about-inner-content-left{
    flex: 1 1 5rem;
}

.about-inner-content-left img{
    width: 100%;
    padding:1px;
    margin-right: 20px;
}

.about-inner-content{
    flex: 1 1 50%;
}

.about-inner-content img{
    width: 95%;
}

.about-right-content h2{
    font-size: 30px;
    padding: 1rem 0;
    color: black;
    font-weight: bolder;
    line-height: 2rem;
    text-wrap:wrap;
}

.about-right-content p{
    font-size: 1.2rem;
    padding: 1rem 0;
    color: var(--textcolor);
    font-family: "Inter", sans-serif;
    line-height: 2.5rem;
    text-wrap:wrap;
}

.aboutsec-content{
    line-height: 2.5rem !important;
}

.aboutbtn{
    padding: 1.5rem 1.5rem;
    background-color: rgb(30, 192, 192)!important;
    border: 1px solid var(--maincolor);
    margin-top: 0.5rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.5s all;
    border-radius: 2px;
}

.aboutbtn:hover{
    background-color: palevioletred;
    color: white;
    border: none;
   
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
    .heading {
        font-size: 20px;
        width: 100%;
    }

    .about-right-content h2 {
        font-size: 25px;
    }

    .about-right-content p {
        font-size: 1rem;
    }

    .aboutbtn {
        font-size: 1rem;
        padding: 1rem 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .inner-main-about {
        flex-direction: column;
        gap: 2rem;
    }

    .about-inner-content-left, .about-inner-content {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .heading {
        font-size: 18px;
        padding: 1rem 0;
    }

    .about-right-content h2 {
        font-size: 22px;
        line-height: 1.5rem;
    }

    .about-right-content p {
        font-size: 0.875rem;
    }

    .aboutbtn {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 480px) {
    .about-right-content h2 {
        font-size: 18px;
    }

    .about-right-content p {
        font-size: 0.75rem;
        line-height: 1.8rem;
    }

    .aboutbtn {
        padding: 0.5rem 1rem;
    }
}



.our-service{
    width: 100%;
    padding: 2rem 2%;
    margin-right: 5%;
}
.service-heading h2{
    text-align: center;
    font-size: 40px;
    font-weight: bolder;
    color: var(--maincolor);
    border-bottom: 2px solid var(--secondcolor);
    width: 200px;
    margin: 0 auto;
    padding: 1rem 0;
    margin-bottom: 25px;

}

.main-services{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    text-align: center;
}
.inner-services{
    flex: 1 1 280px;
    padding: 20px 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   
    
}
.inner-services:hover{
    transform: translateY(-10px);
    border-bottom: 2px solid var(--maincolor);
    background-color: #f5f5f5;
}
.inner-services:hover .service-icon{
    width: 100px;
    height: 100px;
    border-radius: 0;
    background-color: var(--maincolor);
    
}
.inner-services:hover .service-icon i{
    color: white;
    transform: scale(1.1);
}

.service-icon{
    width: 100px;
    height: 100px;
    line-height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    border: 1px solid var(--maincolor);
    background-color: #f5f5f5;
}
.service-icon i{
    font-size: 3rem;
    color: var(--maincolor);
    padding: 1rem;
}
.inner-services h3{
    font-size:20px;
    padding-top: 2rem;
}
.inner-services p{
    font-size: 1.5rem;
    padding: 1.5rem 0;
    line-height: 2.5rem;
    
}
/* services ends */




.main-footer{
    padding: 4rem 7%;
    background-color: var(--textcolor);
}


.footer-distributed{
	background: #66023c;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
	width: 100%;
	text-align: left;
	font: bold 16px sans-serif;
	padding: 55px 50px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
	display: inline-block;
	vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left{
	width: 40%;
}
.logo1{
    padding-left: 10px;
    width: 150px;
}
/* The company logo */
.footer-left
.footer-distributed h3{
	
	font: normal 36px 'Open Sans', cursive;
	margin: 0;
    text-align: center;
}
#foot{
    margin-left: 5px;
}

.footer-distributed h3 span{
	color:  lightseagreen;
}

/* Footer links */

.footer-distributed .footer-links{
	
	margin: 20px 0 12px;
	padding: 0;
}

.footer-distributed .footer-links a{
	display:inline-block;
	line-height: 1.8;
  font-weight:400;
	text-decoration: none;
	color:  inherit;
    gap: 20px;
}

.footer-distributed .footer-company-name{
	
	font-size: 14px;
	font-weight: normal;
	margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center{
	width: 35%;
}

.footer-distributed .footer-center i{
	background-color:  #33383b;
	color: white;
	font-size: 25px;
	width: 38px;
	height: 48px;
	border-radius: 50%;
	text-align: center;
	line-height: 42px;
	margin: 10px 15px;
	vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope{
	font-size: 17px;
	line-height: 38px;
}

.footer-distributed .footer-center p{
	display: inline-block;
	
  font-weight:400;
	vertical-align: middle;
	margin:0;
}

.footer-distributed .footer-center p span{
	display:block;
	font-weight: normal;
	font-size:14px;
	line-height:2;
}

.footer-distributed .footer-center p a{
	
	text-decoration: none;;
}

.footer-distributed .footer-links a:before {
  content: "|";
  font-weight:300;
  font-size: 20px;
  left: 0;
  
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

.footer-distributed .footer-right{
	width: 20%;
}

.footer-distributed .footer-company-about{
	line-height: 20px;
	color:  #92999f;
	font-size: 13px;
	font-weight: normal;
	margin: 0;
}

.footer-distributed .footer-company-about span{
	display: block;
	color:  #ffffff;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 20px;
}

.footer-distributed .footer-icons{
	margin-top: 25px;
}

.footer-distributed .footer-icons a{
	display: inline-block;
	width: 35px;
	height: 35px;
	cursor: pointer;
	background-color:  #33383b;
	border-radius: 2px;

	font-size: 20px;
	color: #ffffff;
	text-align: center;
	line-height: 35px;

	margin-right: 3px;
	margin-bottom: 5px;
}


/* Responsive */
@media (max-width: 768px) {
    .footer-distributed {
        flex-direction: column;
        padding: 25px;
        margin-bottom: 60px;
    }

    .footer-distributed .footer-left,
    .footer-distributed .footer-center,
    .footer-distributed .footer-right {
        width: 100%;
        text-align: center;
    }

    .footer-distributed .footer-center i {
        margin: 0 auto;
        margin-bottom: 10px;
    }
.logo{
    margin-left: 15%px!important;
}
    .footer-distributed .footer-center p {
        text-align: center;
    }

    .footer-distributed .footer-links a {
        display: block;
        margin-bottom: 10px;
    }

    .footer-distributed .footer-icons a {
        margin-right: 10px;
    }
}



h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.branches-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; margin: 30px;
}

.branch-card {
    background-color: #f1d7d7;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 400px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    animation: bgColorChange 10s infinite alternate ease-in-out;
}

.branch-card:hover {
    transform: scale(1.05);
}

.branch-card:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 0;
    transition: transform 0.5s ease;
}

.branch-card:hover:before {
    transform: rotate(45deg) translateX(-25%) translateY(-25%);
}

.branch-card .icon {
    font-size: 40px;
    color: teal;
    margin-bottom: 15px;
    z-index: 1;
    position: relative;
}

.branch-card .details {
    z-index: 1;
    position: relative;
}

.branch-card .details .topic {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.branch-card .details .text-one,
.branch-card .details .text-two {
    margin-bottom: 5px;
    color: #0c0a0a;
}

.branch-card .details .phone,
.branch-card .details .email {
    display: flex;
    align-items: center;
    gap: 10px;
}

.branch-card .details .phone a,
.branch-card .details .email a {
    color: teal;
    text-decoration: none;
    font-weight: bold;
    padding-top: 10px;
}

.branch-card .details .phone a:hover,
.branch-card .details .email a:hover {
    text-decoration: underline;
}

.icon-phone:hover,
.icon-email:hover {
    transform: scale(1.2);
    transition: transform 0.2s ease;
}

@keyframes bgColorChange {
    0% {
        background-color: #e47c68;
    }
    25% {
        background-color: #7cdd81;
    }
    50% {
        background-color: #79bce9;
    }
    75% {
        background-color: #ebdc56;
    }
    100% {
        background-color: #fc9dd7;
    }
}





/* Modal Style */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    height: 100%;
    max-width: 700px;
    max-height: 700px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 10px;
    animation: zoom 0.6s;
}

@keyframes zoom {
    from { transform: scale(0) } 
    to { transform: scale(1) }
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive Design for ISO Certified Section and Modal */
@media (max-width: 768px) {
  
    .modal-content {
        width: 70%;
        height: 70%;
    }

    .close {
        top: 15px;
        right: 20px;
        font-size: 30px;
    }
}

@media (max-width: 480px) {
   

    .modal-content {
        width: 90%;
        height: 80%;
    }

    .close {
        top: 10px;
        right: 15px;
        font-size: 25px;
    }
}


.why-us-section {
    padding: 50px;
    background-color: #f5f5f5;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 32px;
    color: #074a4d;
}

.section-header p {
    font-size: 18px;
    color: #333;
}

.main-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.inner-service {
    width: 22%;
    background-color: #ffffff;
    margin-bottom: 30px;
    padding: 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.inner-service:hover {
    transform: translateY(-10px);
}

.service-icon i {
    font-size: 40px;
    color: #074a4d;
    margin-bottom: 15px;
}

.inner-service h3 {
    font-size: 20px;
    color: #074a4d;
    margin-bottom: 10px;
}

.inner-service p {
    font-size: 16px;
    color: #666;
}

@media (max-width: 768px) {
    .inner-service {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .inner-service {
        width: 100%;
    }
}


.medical-equipment-section {
    background-color: #f4f8fb;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.medical-equipment-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.equipment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipment-list li {
    background-color: #e0f7fa;
    margin: 10px 0;
    padding: 10px 15px;
    border-radius: 5px;
    position: relative;
    font-size: 16px;
    color: #34495e;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.equipment-list li:hover {
    background-color: #b2ebf2;
}

.equipment-list li::before {
    content: "";
    width: 8px;
    height: 100%;
    background-color: #00acc1;
    position: absolute;
    left: 0;
    top: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}


.vmv-section{
    padding:90px 0;
    background:#fff;
}

.main-heading{
    text-align:center;
    margin-bottom:60px;
}

.main-heading h2{
    color:#66023c;
    font-size:45px;
    font-weight:700;
}

.main-heading span{
    width:100px;
    height:4px;
    background:#66023c;
    display:block;
    margin:15px auto;
}

.main-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
}

.vm-row{
    display:flex;
    gap:50px;
    margin-bottom:70px;
}

.vision-box,
.mission-box{
    flex:1;
    padding:40px;
    background:#faf5f8;
    border-left:6px solid #66023c;
}

.vm-title{
    display:flex;
    align-items:center;
    margin-bottom:25px;
}

.vm-title i{
    font-size:35px;
    color:#66023c;
    margin-right:15px;
}

.vm-title h3{
    margin:0;
    color:#66023c;
    font-size:30px;
}

.vision-box ul,
.mission-box ul{
    padding-left:20px;
}

.vision-box li,
.mission-box li{
    margin-bottom:15px;
    line-height:1.8;
    color:#555;
}

.subham-values{
    text-align:center;
    background:#66023c;
    padding:50px 30px;
}

.subham-values h3{
    color:#fff;
    margin-bottom:40px;
    font-size:34px;
}

.value-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

.value-item{
    background:rgba(255,255,255,0.1);
    padding:25px 15px;
}

.value-item span{
    display:block;
    font-size:50px;
    font-weight:700;
    color:#fff;
}

.value-item h4{
    color:#fff;
    font-size:16px;
    margin-top:10px;
}

@media(max-width:768px){

    .vm-row{
        flex-direction:column;
    }

    .value-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .main-heading h2{
        font-size:32px;
    }
}


/* ==========================
SERVICES SECTION
========================== */

.wrap{
text-align:center;
padding:60px 20px;
background:#faf8fa;
}

.wrap h1{
color:#66023c;
font-size:42px;
font-weight:700;
margin-bottom:40px;
}

.picture-cards{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:25px;
}

/* CARD */

.card{
background:#ffffff;
width:260px;
border-radius:15px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:0.4s ease;
border:2px solid #f1d9e6;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 10px 25px rgba(102,2,60,0.18);
}

/* IMAGE */

.destination-pictures{
width:100%;
height:170px;
object-fit:cover;
}

/* TITLE */

.destination-title{
font-size:20px;
font-weight:700;
color:#66023c;
padding:15px 10px 8px;
margin:0;
}

/* CONTENT */

.card p{
font-size:15px;
color:#666;
line-height:1.7;
padding:0 15px;
margin-bottom:20px;
min-height:80px;
}

/* BUTTON */

.aboutbtn{
display:inline-block;
background:#66023c !important;
color:#fff;
text-decoration:none;
padding:10px 25px;
border-radius:30px;
font-size:15px;
font-weight:600;
margin-bottom:20px;
transition:0.3s;
}



/* ==========================
TABLET
========================== */

@media (max-width:992px){


.card{
    width:280px;
}


}




@media (max-width:480px){

    .picture-cards{
        grid-template-columns:1fr;
    }

    .card{
        width:100% !important;
    }

    .destination-pictures{
        height:180px;
    }
}


.subham-footer{
    background:#f8f3f6;
    margin-top:80px;
}

.footer-top{
    background:#66023c;
    padding:40px 20px;
    text-align:center;
}

.footer-logo-box img{
    width:100px;
    height:100px;
    border-radius:50%;
    background:#fff;
    padding:5px;
}

.footer-logo-box h2{
    color:#fff;
    margin-top:15px;
    font-size:38px;
    font-weight:700;
}

.footer-logo-box p{
    color:#f6d9e8;
    letter-spacing:2px;
}

.footer-contact-row{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
    margin-top:-40px;
    padding:0 20px;
}

.contact-box{
    background:#fff;
    width:320px;
    padding:30px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-box i{
    font-size:35px;
    color:#66023c;
    margin-bottom:15px;
}

.contact-box h4{
    color:#66023c;
    margin-bottom:10px;
}

.contact-box p{
    color:#666;
    line-height:1.8;
}

.footer-main{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-around;
    padding:70px 30px 40px;
}

.footer-main h3{
    color:#66023c;
    margin-bottom:20px;
    font-size:24px;
}

.footer-main ul{
    list-style:none;
    padding:0;
}

.footer-main ul li{
    margin-bottom:12px;
    color:#555;
}

.footer-main ul li a{
    color:#555;
    text-decoration:none;
}

.social-icons a{
    width:45px;
    height:45px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#66023c;
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    text-decoration:none;
}

.copyright{
    background:#66023c;
    color:#fff;
    text-align:center;
    padding:15px;
}

@media(max-width:768px){

    .footer-logo-box h2{
        font-size:28px;
    }

    .contact-box{
        width:100%;
    }

    .footer-main{
        text-align:center;
        gap:30px;
    }
}