*{
    margin: 0;
    padding: 0;
    font-family:'Roboto';  
}

html,body
{
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Header Styling */
.header {
    background-color: #EAEFF3;
    padding: 1vw 0;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 20px;
}

/* Menu Toggle Styling */
.menu-toggle {
    background: none;  /* Ensure background is removed */
    border: none;
    color: #007bff; /* Blue color for the toggle */
    font-size: 2vw;
    cursor: pointer;
    display: none;
    position: absolute; /* Positioning the toggle */
    right: 0; /* Move it to the rightmost of the navbar */
}

/* Navigation Styling */
.nav {
    flex-grow: 1;
}

.nav-list {
    display: flex;
    list-style: none;
    justify-content: space-between;
    align-items: center;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    color: #333;
    text-decoration: none;
    padding: 0.5vw 1.2vw;
    display: block;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.nav-list a:hover {
    background-color: rgba(255, 255, 255, 0);
    border-radius: 0.1vw;
    color: #007bff;
}

.nav-list.open {
    display: flex;
}

/* Dropdown Styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(45, 42, 59, 0.477);
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 5px;
    min-width: 20vw;
    z-index: 100;
}

.dropdown-menu li a {
    padding: 1.4vw;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-toggle::after {
    content: ' ▼';
    font-size: 1vw;
}

/* Call to Action Button */
.cta-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.5vw;
    border-radius: 5px;
    cursor: pointer;
}

.cta-btn i {
    margin-right: 8px;
}

.cta-btn:hover {
    background-color: #0056b3;
}

/* Mobile-Friendly Styling */
@media (max-width: 1000px) {
    /* Show the hamburger menu button */
    .menu-toggle {
        display: block;  /* Show the hamburger button */
        font-size: 4vw;  /* Adjust font size of the hamburger button */
        color: #007bff;
        cursor: pointer;
    }

    /* Mobile Navigation Menu */
    .nav {
        display: none; /* Hidden by default */
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(45, 42, 59, 0.9);
        z-index: 1000;
        padding: 10vw 5vw;
    }

    /* Show Navigation when the hamburger button is active */
    .menu-toggle.active ~ .nav {
        display: flex;  /* Show menu when active */
    }

    /* Cross button adjustments */
    #cross {
        display: none;  /* Hidden by default */
        align-items: center;
        justify-content: center;
        color: white;
        background-color: #007bff;
        width: 8vw;
        height: 8vw;
        border-radius: 50%;
        position: absolute;
        top: 2vw;
        right: 5vw;
        z-index: 1100;
        cursor: pointer;
        font-size: 6vw;
    }

    /* Display cross button when hamburger is active */
    .menu-toggle.active + #cross {
        display: flex;
    }

    /* Adjust navigation list items */
    .nav-list {
        width: 50%; /* Adjust width for mobile */
    }

    .nav-list li {
        margin-top: 1vw;
    }

    .nav-list a {
        padding: 1vw 5%;
    }

    .cta-btn {
        margin-top: 1vw;
        font-size: 2vw;
    }
}

/* Mobile-Friendly Styling */
@media (max-width: 768px) {
    /* Header Adjustments */
    .header {
        padding: 2vw;
        position: relative;
    }

    /* Menu Toggle Icon */
    .menu-toggle {
        display: block;
        font-size: 6vw;
        color: #007bff;
        cursor: pointer;
    }

    /* Mobile Navigation Menu */
    .nav {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(45, 42, 59, 0.9);
        z-index: 1000;
        padding: 10vw 5vw;
    }

    .nav-list {
        flex-direction: column;
        gap: 3vw;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list a {
        color: #007bff;
        font-size: 5vw;
        font-weight: bold;
        text-align: left;
        padding: 2vw;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        transition: color 0.3s ease;
    }

    .nav-list a:hover {
        color: white;
    }

    .dropdown-menu {
        background: rgba(0, 0, 0, 0.8);
        padding: 3vw;
        margin-top: 1vw;
        border-radius: 5px;
    }

    .dropdown-menu a {
        color: #ccc;
        font-size: 4vw;
        padding: 1.5vw;
    }

    .dropdown-menu a:hover {
        color: white;
        background: rgba(255, 255, 255, 0.1);
    }

    .cta-btn {
        width: 100%;
        text-align: center;
        margin-top: 5vw;
        font-size: 5vw;
        background: #007bff;
        color: white;
        border-radius: 5px;
    }

    .cta-btn:hover {
        background: #0056b3;
    }

    /* Show Menu When Active */
    .menu-toggle.active ~ .nav {
        display: flex;
    }
}

/* Cross Button */
#cross {
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: #007bff;
    width: 8vw;
    height: 8vw;
    border-radius: 50%;
    position: absolute;
    top: 2vw;
    right: 5vw;
    z-index: 1100;
    cursor: pointer;
    font-size: 6vw;
}

.menu-toggle.active + #cross {
    display: flex;
}



/* logo-email section */
.logo-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #f8f8f8;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 1320px;
}

.logo-div img {
    width: 10vw;
    max-width: 120px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.logo-div img:hover {
    transform: scale(1.05); /* Hover effect for logo */
}

.details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 20px; /* Adds space between logo and text */
}

.phone-number, .mail {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.phone-number i, .mail i {
    font-size: 2rem;
    margin-right: 15px;
    color: #007bff;
}

.phone-number h3, .mail h3 {
    font-weight: 600;
    color: #333;
}

.phone-number span, .mail span {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Hover effect on phone number and email */
.phone-number:hover, .mail:hover {
    transform: translateX(10px);
}

/* Responsive styling */
@media (max-width: 768px) {
    .logo-details {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10vw 5%;
    }

    .logo-div img {
        width: 30vw;
        max-width: 150px;
        margin-bottom: 2vw; /* Space between logo and text */
    }

    .details {
        margin-top: 2vw;
    }

    .phone-number, .mail {
        flex-direction: column;
        font-size: 4vw;
        margin-bottom: 3vw;
    }

    .phone-number h3, .mail h3 {
        font-size: 5vw;
    }

    .phone-number i, .mail i {
        font-size: 6vw;
        margin-bottom: 1vw;
    }

    .phone-number span, .mail span {
        font-size: 4vw;
    }
}

@media (max-width: 480px) {
    .phone-number, .mail {
        font-size: 5vw;
    }
    
    .phone-number h3, .mail h3 {
        font-size: 6vw;
    }
    
    .phone-number i, .mail i {
        font-size: 7vw;
    }
    
    .phone-number span, .mail span {
        font-size: 5vw;
    }
}


/* hero section */
/* picture slider */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    cursor: pointer;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Smooth transition when changing images */
}

.hero-img.active {
    opacity: 1; /* Only the active image will be visible */
}

/* Style for the buttons */
.btn-new {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Left button */
#prev {
    left: 10px;
}

/* Right button */
#next {
    right: 10px;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .hero {
        height: 60vh; /* Adjust height for mobile */
    }

    .hero-image {
        flex-direction: column; /* Stack images vertically on mobile */
    }

    .hero-img {
        height: 60vh; /* Adjust image height for mobile */
    }

    .btn-new {
        font-size: 14px; /* Smaller buttons */
        padding: 8px 15px;
    }

    /* Adjust the position of the navigation buttons */
    #prev, #next {
        top: 45%; /* Slightly move buttons up on mobile */
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh; /* Further reduce height for very small screens */
    }

    .hero-img {
        height: 50vh; /* Further adjust image height */
    }

    .btn-new {
        font-size: 12px; /* Smaller font size for very small screens */
        padding: 6px 12px;
    }

    #prev, #next {
        top: 40%; /* Adjust button position */
    }
}


/* bpo section */
.bpo-section
{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 5vw;
    padding: 5vw;
    gap: 7vw;
    cursor: pointer;
}

.text-part
{
    width: 50vw;
}

.text-part h3
{
    font-size: 2.5vw;
    text-align: right;
    font-weight: 700;
}

.first-text
{
    text-align: right;
}

.second-text
{
    text-align: right;
    margin-top: 2vw;
    line-height: 2.4vw;
    font-size: 1.14vw;
    color: rgb(119, 118, 118);
}


.bpo-section img {
    width: 100%;      
    height: auto;       
    max-width: 100%;    
}


@media (max-width: 768px) {
    .bpo-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 5vw;
    }

    .text-part {
        width: 100%;
    }

    .text-part h3 {
        font-size: 4vw; 
        text-align: left;
    }

    .first-text {
        text-align: left;
    }

    .second-text {
        font-size: 3vw; 
        text-align: left;
        line-height: 4vw;
    }

 
    .bpo-section img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .bpo-section {
        padding: 3vw;
    }

    .text-part h3 {
        font-size: 5vw; 
    }

    .first-text {
        text-align: left;
    }

    .second-text {
        font-size: 4vw;
        line-height: 5vw;
    }

   
    .bpo-section img {
        width: 100%;
        height: auto;
    }
}


/* testimonials styling */
.testimonials {
    text-align: center;
    padding: 50px;
    background-color: #f9f9f9;
    position: relative;
    cursor: pointer;
}

.carousel {
    position: relative;
    overflow: hidden;
    height: 150px; /* Adjust as needed */
}

.carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

.carousel-item.active {
    opacity: 1;
}

.testimonials h2 {
    margin-bottom: 20px;
    font-size: 2vw;
    color: #333;
}
.carousel p
{
    margin-bottom: 1vw;
    font-size: 2vw;
}
.carousel h4
{
    margin-top: 1vw;
    font-size: 2.2vw;
}
/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .testimonials {
        padding: 40px 20px; /* Adjust padding for tablets */
    }

    .carousel {
        height: 120px; /* Adjust carousel height for tablets */
    }

    .carousel-item {
        height: auto; /* Make carousel items adjust height accordingly */
    }

    .testimonials h2 {
        font-size: 1.5rem; /* Adjust heading font size */
        margin-bottom: 15px;
    }
    .carousel p
    {
     margin-bottom: 1vw;
     font-size: 2vw;
    }
    .carousel h4
   {
    margin-top: 1vw;
    font-size: 3vw;
   }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 30px 15px; /* Adjust padding for smaller screens */
    }

    .carousel {
        height: 100px; /* Reduce carousel height for small screens */
    }

    .testimonials h2 {
        font-size: 1.2rem; /* Further reduce font size for small screens */
        margin-bottom: 10px;
    }
    .carousel p
    {
     margin-bottom: 1vw;
     font-size: 2vw;
    }
    .carousel h4
    {
     margin-top: 1vw;
     font-size: 3vw;
    }
}


/* stats styling */
.stats {
    display: flex;
    justify-content: space-around;
    background-color: #2b7bd0d4;
    color: black;
    padding: 50px;
    cursor: pointer;
    gap: 20px; /* Adds space between items */
}

.stat {
    text-align: center;
    font-size: 1.5rem;
}

.counter {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .stats {
        flex-direction: column; /* Stack the items vertically on tablets */
        align-items: center; /* Center align the items */
        padding: 30px 20px; /* Reduce padding for tablets */
    }

    .stat {
        font-size: 1.2rem; /* Reduce font size for stat items on tablets */
    }

    .counter {
        font-size: 2rem; /* Reduce font size for counters on tablets */
    }
}

@media (max-width: 480px) {
    .stats {
        padding: 20px 15px; /* Further reduce padding on mobile */
    }

    .stat {
        font-size: 1rem; /* Further reduce font size for mobile */
    }

    .counter {
        font-size: 1.5rem; /* Adjust counter font size for mobile */
    }
}


/* cards styling */

.services {
    display: flex;
    justify-content: space-around;
    padding: 50px;
    background: #f3f3f3;
    cursor: pointer;
    flex-wrap: wrap; /* Allow service cards to wrap on smaller screens */
}

/* Styling for each service card */
.service-card {
    text-align: center;
    padding: 20px;
    width: 200px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px; /* Add margin to create space between the cards */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.service-card i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #007bff;
}

/* Responsive Styling for Screens smaller than 768px */
@media (max-width: 768px) {
    .services {
        justify-content: center; /* Center the items on smaller screens */
        padding: 30px;
    }

    .service-card {
        width: 150px; /* Adjust the width of the cards */
        padding: 15px; /* Adjust the padding inside the cards */
    }

    .service-card i {
        font-size: 1.5rem; /* Smaller icon size for mobile */
    }
}

/* Responsive Styling for Screens smaller than 480px */
@media (max-width: 480px) {
    .services {
        padding: 20px; /* Reduced padding for very small screens */
    }

    .service-card {
        width: 100%; /* Full width on smaller screens */
        margin-bottom: 20px; /* Add space between cards */
    }

    .service-card i {
        font-size: 1.25rem; /* Smaller icon size for very small screens */
    }
}





/* about us styling */
.about-us {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #f5f7fa, #d7e1ec);
    font-family: 'Arial', sans-serif;
    color: #333;
    overflow: hidden;
    display: none;
    cursor: pointer;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Header Section */
.about-header h2 {
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 15px;
    animation: fadeInDown 1s ease;
}

.about-header p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

/* Content Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
}

.about-info,
.about-vision {
    flex: 1 1 45%;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    animation: fadeIn 1.5s ease;
    height: 55vw;
}

.about-info h3,
.about-vision h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #0056b3;
}

.about-info p,
.about-vision p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    text-align: left;
}

/* Service Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
}

.service-item i {
    font-size: 2rem;
    color: #0056b3;
    margin-bottom: 10px;
}

.service-item h4 {
    font-size: 1.2rem;
    color: #0056b3;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 0.95rem;
    color: #555;
}

/* Vision Section */
.about-vision img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.about-vision img:hover {
    transform: scale(1.05);
}

.cta-button {
    background-color: #0056b3;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #003d80;
    transform: scale(1.05);
}

/* Media Queries */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-info,
    .about-vision {
        flex: 1 1 100%;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* timeline  */
.timeline {
    margin-top: 40px;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.timeline h3 {
    font-size: 2.4vw;
    color: #0056b3;
    margin-bottom: 20px;
}

.timeline ul {
    list-style: none;
    padding: 0;
}

.timeline li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-align: left;
}

.timeline .year {
    font-weight: bold;
    color: #0056b3;
    margin-right: 15px;
    font-size: 1.2rem;
}


/* partners styling */
.partners {
    margin: 40px 0;
    text-align: center;
}

.partners h3 {
    font-size: 2.4vw;
    margin-bottom: 20px;
    color: #0056b3;
}

.partners .logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.partners .logos img {
    max-width: 120px;
    transition: transform 0.3s ease;
}

.partners .logos img:hover {
    transform: scale(1.1);
}


/* core values */
.core-values {
    text-align: center;
    padding: 40px 20px;
    cursor: pointer;
}

.core-first-text
{
    margin-bottom: 1.4vw;
    font-size: 2.4vw;
    color: #0056B3;

}
.core-values .values {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-item {
    max-width: 300px;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-item i {
    font-size: 2rem;
    color: #0056b3;
    margin-bottom: 10px;
}

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0056b3;
}

/* team styling */
.team {
    text-align: center;
    margin-top: 40px;
}

.team h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #0056b3;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member {
    max-width: 200px;
    text-align: center;
}

.team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.team-member img:hover {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* Show 2 items per row */
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(1, 1fr); /* Show 1 item per row */
        gap: 15px;
    }
}

@media (max-width: 1080px) {
    .about-header h2 {
        font-size: 2.5rem;
    }

    .about-header p {
        font-size: 1rem;
    }

    .about-info,
    .about-vision {
        height: auto;
    }

    .service-item i {
        font-size: 1.8rem;
    }

    .service-item h4 {
        font-size: 1rem;
    }

    .service-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .about-header h2 {
        font-size: 2rem;
    }

    .about-header p {
        font-size: 1rem;
    }

    .about-info,
    .about-vision {
        flex: 1 1 100%;
        padding: 15px;
    }

    .about-content {
        gap: 20px;
    }

    .service-item {
        padding: 10px;
    }

    .timeline h3 {
        font-size: 1.5rem;
    }

    .timeline .year {
        font-size: 1rem;
    }

    .core-first-text {
        font-size: 1.5rem;
    }

    .value-item h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-header h2 {
        font-size: 1.8rem;
    }

    .about-header p {
        font-size: 0.9rem;
    }

    .about-content {
        gap: 10px;
    }

    .about-info,
    .about-vision {
        padding: 10px;
    }

    .service-item i {
        font-size: 1.5rem;
    }

    .service-item h4 {
        font-size: 0.9rem;
    }

    .service-item p {
        font-size: 0.8rem;
    }

    .timeline h3 {
        font-size: 1.3rem;
    }

    .timeline .year {
        font-size: 0.9rem;
    }

    .partners .logos img {
        max-width: 90px;
    }

    .team-member img {
        width: 80%;
    }

    .core-first-text {
        font-size: 1.2rem;
    }

    .value-item h4 {
        font-size: 0.9rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}


/* dispatch section styling */
.taxi-service {
    padding: 40px 20px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 8px;
    display:none;
}

.animated-title, .section-title {
    text-align: center;
    font-size: 26px;
    color: #007bff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.animated-text {
    text-align: left;
    font-size: 16px;
    margin: 10px 0 20px;
    color: #555;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr; /* 1 card per row for smaller screens */
    }

    .animated-title, .section-title {
        font-size: 22px;
    }

    .animated-text {
        font-size: 14px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-description {
        font-size: 13px;
    }

    .card {
        height: auto;
        padding: 15px;
    }

    .card-icon {
        font-size: 24px;
    }

    .cta-button {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    .cta-button {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 1.5vw;
    }

    .animated-title, .section-title {
        font-size: 20px;
    }

    .animated-text {
        font-size: 12px;
    }

    .card-title {
        font-size: 14px;
    }

    .card-description {
        font-size: 12px;
    }
}

.card {
    background: #f4f4f4;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    z-index: 0; /* Ensure the pseudo-element stays beneath content */
}

.card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #005bbb;
    transition: height 0.4s ease;
    z-index: -1; /* Ensure the background stays behind the card content */
    border-radius: 8px; /* Match card's border radius */
}

.card:hover::before {
    height: 100%; /* Full height on hover */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Keep text/icon changes on hover */
.card:hover .card-icon,
.card:hover .card-title,
.card:hover .card-description {
    color: #fff;
}

.card-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60px;
    background: #eaf4ff;
    border-radius: 50%;
    margin: 0 auto 15px auto;
}

.card-icon {
    font-size: 28px;
    color: #007bff;
    transition: color 0.3s ease;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.card-description {
    font-size: 1.1vw;
    line-height: 1.6;
    color: #333;
    padding: 0 15px;
    transition: color 0.3s ease;
    text-align: left;
}

/* Hover effects */
.card:hover .card-icon,
.card:hover .card-title,
.card:hover .card-description {
    color: #fff; 
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .animated-title, .section-title {
        font-size: 22px;
    }

    .animated-text {
        font-size: 14px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-description {
        font-size: 13px;
    }

    .card {
        height: auto;
    }

    .card-icon {
        font-size: 24px;
    }
}


/* taxi-dispatch */
.taxi-dispatch {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
    display: none;
}


.image-taxi {
    display: flex;
    justify-content: center; 
    align-items: center; 
    width: 100%; 
    margin-bottom: 20px;
}

.image-taxi img {
    max-width: 300px; 
    height: auto;
    border-radius: 8px; 
}

/* Taxi Text */
.taxi-text {
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.taxi-text h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0066cc;
    text-align: center;
    margin-top: 2vw;
    animation: fadeInUp 1s ease-out;
}

.taxi-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

/* Features Section */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 40px;
    gap: 20px;
    animation: fadeInUp 1s ease-out;
}

.feature-item {
    flex: 1 1 calc(25% - 20px);
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.feature-item:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.8s;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-item i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.feature-item i:hover {
    transform: rotate(360deg);
}

.feature-item h4 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.feature-item p {
    font-size: 1rem;
    color: #666;
    text-align: left;
}

.feature-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.feature-btn:hover {
    background-color: #005bb5;
}

.cta {
    margin-top: 40px;
    text-align: center;
}

.cta-btn {
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #005bb5;
}

#last-item p
{
    text-align: center;
}

/* Mobile and Tablet Responsiveness */
@media (max-width: 768px) {
    .taxi-dispatch {
        padding: 30px 15px;
    }

    .image-taxi img {
        width: 150px;
    }

    .taxi-text h3 {
        font-size: 2rem;
    }

    .taxi-text p {
        font-size: 0.95rem;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .feature-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Mobile First (Phone Screens < 480px) */
@media (max-width: 480px) {
    .taxi-text h3 {
        font-size: 1.8rem;
    }

    .taxi-text p {
        font-size: 0.9rem;
    }

    .features {
        gap: 15px;
    }

    .feature-item i {
        font-size: 2.5rem;
    }

    .feature-item h4 {
        font-size: 1.2rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Limo Dispatch Section */
.limo-dispatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 80px 20px;
    font-family: 'Arial', sans-serif;
    display: none;
}

/* Limo Image Styling */
.limo-image {
    width: 100%;
    overflow: hidden;
    margin: 0 auto; 
    display: flex;
    justify-content: center;
}

.limo-img {
    width: 40%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.limo-img:hover {
    transform: scale(1.05);
}


/* Limo Content Section */
.limo-content {
    width: 100%;
    max-width: 1200px;
}

/* Limo Text Styling */
.limo-text {
    margin-bottom: 40px;
}

.limo-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 20px;
    margin-top: 2vw;
    text-align: center;
}

.limo-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
    text-align: left;
}

.limo-text p:last-child {
    margin-bottom: 30px;
}

/* Feature Cards Section */
.feature-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1 1 calc(33% - 20px);
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
}

/* Call-to-Action Section */
.cta-section {
    text-align: center;
    margin-top: 40px;
}

.cta-section p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
}

.cta-btn {
    background-color: #007bff;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Limo Image Styling */
.limo-image {
    width: 100%;
    overflow: hidden;
    margin: 0 auto; 
    display: flex;
    justify-content: center;
}

.limo-img {
    width: 40%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.limo-img:hover {
    transform: scale(1.05);
}

/* Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .limo-img {
        width: 100%; /* Ensure the image takes full width on mobile */
    }

    .limo-text h3 {
        font-size: 1.8rem;
    }

    .limo-text p {
        font-size: 0.9rem;
    }

    .feature-card {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .feature-card i {
        font-size: 2.5rem;
    }

    .feature-card h4 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

.cta-btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* Responsive Styling */
@media (max-width: 768px) {
    .feature-cards {
        flex-direction: column;
        gap: 20px;
    }

    .feature-card {
        max-width: 100%;
    }
}



.truck-dispatch {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 40px;
    padding: 60px 20px;
    font-family: 'Arial', sans-serif;
    display: none;
}

/* Truck Image Styling */
.truck-img {
    width: 98%; 
    height: 25vw; /* Set a fixed height */
    object-fit: contain; /* Ensures the image scales properly and avoids distortion */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.truck-img:hover {
    transform: scale(1.05);
}

/* Truck Content Section */
.truck-content {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

/* Truck Text Styling */
.truck-text {
    margin-bottom: 40px;
}

.truck-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 20px;
    margin-top: 2vw;
}

.truck-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
    text-align: left;
}

.truck-text p:last-child {
    margin-bottom: 30px;
}

/* Feature Cards Section */
.feature-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1 1 calc(33% - 20px);
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
}

/* Call-to-Action Section */
.cta-section {
    text-align: center;
    margin-top: 40px;
}

.cta-section p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
}

.cta-btn {
    background-color: #007bff;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* Mobile and Tablet Responsiveness */
@media (max-width: 1024px) {
    .truck-img {
        height: 20vw;  /* Adjust image height for tablets */
    }

    .feature-cards {
        flex-direction: column;
        gap: 20px;
    }

    .feature-card {
        max-width: 100%;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    /* For small tablets and large phones */
    .truck-img {
        height: 200px;  /* Fix the image height for smaller screens */
    }

    .truck-text h3 {
        font-size: 2rem;
    }

    .truck-text p {
        font-size: 0.95rem;
    }

    .feature-cards {
        flex-direction: column;
        gap: 20px;
    }

    .feature-card {
        flex: 1 1 100%; /* Full width for the feature cards */
        margin-bottom: 20px;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* For smaller screens (phones) */
    .truck-img {
        height: 150px;  /* Make the image smaller for mobile */
    }

    .truck-text h3 {
        font-size: 1.6rem;
    }

    .truck-text p {
        font-size: 0.9rem;
    }

    .feature-cards {
        flex-direction: column;
        gap: 15px;
    }

    .feature-card {
        flex: 1 1 100%;
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}


/* tow dispatch */
.tow-dispatch {
    padding: 60px 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    text-align: center; 
    gap: 30px;
    display: none;
}

/* Image Styling */
.image-two img {
    width: 100%;
    height: 25vw;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease; 
}

.image-two img:hover {
    transform: scale(1.05);
}

/* Tow Text Styling */
.tow-text h3 {
    font-size: 36px;
    color: #003366;
    margin-bottom: 20px;
    margin-top: 2vw;
}

.tow-text p {
    color: #555;
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
    max-width: 100%; 
}

/* Cards Section */
.cards-container {
    display: flex;
    justify-content: center; 
    gap: 20px;
    flex-wrap: wrap; 
    text-align: center;
}

.card-tow {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-align: center;
}

.card-tow i {
    font-size: 40px;
    color: #0056b3;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.card-tow h4 {
    color: #003366;
    font-size: 24px;
    margin-bottom: 15px;
}

.card-tow p {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}

.card-tow:hover {
    transform: translateY(-10px);
    background-color: #0056b3;
    color: #fff;
}

.card-tow:hover i {
    color: #fff;
}

.card-tow:hover h4 {
    color: #fff;
}

.card-tow:hover p {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Tablets */
    .tow-dispatch {
        padding: 50px 15px; /* Slightly smaller padding */
    }

    .image-two img {
        height: 20vw; /* Make image height more responsive */
    }

    .tow-text h3 {
        font-size: 32px; /* Adjust heading size for tablets */
    }

    .tow-text p {
        font-size: 16px; /* Adjust paragraph font size */
    }

    .cards-container {
        flex-direction: column;
        gap: 20px; /* Stack the cards vertically */
    }

    .card-tow {
        width: 90%; /* Adjust card width for better fit */
        max-width: 600px; /* Ensure it doesn't grow too large */
    }
}

@media (max-width: 768px) {
    /* Small Tablets and Large Mobiles */
    .tow-dispatch {
        padding: 40px 10px;
    }

    .image-two img {
        height: 30vw; /* Adjust image size for small devices */
    }

    .tow-text h3 {
        font-size: 28px;
    }

    .tow-text p {
        font-size: 16px;
    }

    .cards-container {
        flex-direction: column;
        gap: 20px; /* Stack the cards vertically */
    }

    .card-tow {
        width: 90%;
        max-width: 500px;
    }
}

@media (max-width: 600px) {
    /* Small Mobile Screens */
    .tow-dispatch {
        padding: 30px 10px;
    }

    .image-two img {
        height: 40vw; /* Adjust height for mobile devices */
    }

    .tow-text h3 {
        font-size: 22px;
    }

    .tow-text p {
        font-size: 14px;
    }

    .cards-container {
        flex-direction: column;
        gap: 15px; /* Reduce gap between cards */
    }

    .card-tow {
        width: 100%;
        max-width: 350px; /* Make cards fit better on small screens */
        padding: 15px; /* Reduce padding on small screens */
    }
}

@media (max-width: 480px) {
    /* Very Small Mobile Screens */
    .tow-dispatch {
        padding: 20px 10px;
    }

    .image-two img {
        height: 40vw; /* Adjust height for small mobile devices */
    }

    .tow-text h3 {
        font-size: 18px; /* Adjust heading size for very small screens */
    }

    .tow-text p {
        font-size: 14px; /* Adjust paragraph font size */
    }

    .cards-container {
        flex-direction: column;
        gap: 10px; /* Further reduce gap between cards */
    }

    .card-tow {
        width: 100%;
        max-width: 350px; /* Ensure cards take up full width but don't overflow */
        padding: 10px; /* Reduce padding to save space */
    }
}

/* Base Image Styling */
.image-two img {
    width: 40%;
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .image-two img {
        height: auto; /* Let height be responsive */
    }
}

@media (max-width: 480px) {
    .image-two img {
        height: 30vw; /* Adjust height for mobile screens */
    }
}

/* Cards Section - Consolidated for all screen sizes */
.cards-container {
    display: flex;
    justify-content: center; 
    gap: 20px;
    flex-wrap: wrap; 
    text-align: center;
}

.card-tow {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px; /* Default width for larger screens */
    max-width: 100%; /* Ensures it doesn't grow beyond the container */
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-align: center;
}

.card-tow i {
    font-size: 40px;
    color: #0056b3;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.card-tow h4 {
    color: #003366;
    font-size: 24px;
    margin-bottom: 15px;
}

.card-tow p {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}

/* Responsive Design for Tablets and Smaller Screens */
@media (max-width: 1024px) {
    .card-tow {
        width: 45%; /* Cards take up 45% of the container width */
        max-width: 500px; /* Prevent cards from becoming too wide */
    }

    .cards-container {
        flex-direction: row; /* Keep the cards in a row */
        gap: 15px;
    }
}

@media (max-width: 500px) {
    /* Small Screens */
    .card-tow {
        width: 95%; /* Cards take 95% of the container width */
        max-width: 310px; /* Make sure they don’t get too large */
    }

    .cards-container {
        flex-direction: column; /* Stack the cards vertically */
        gap: 15px; /* Smaller gap between cards */
    }
}

@media (max-width: 360px) {
    /* Small Screens */
    .card-tow {
        width: 95%; /* Cards take 95% of the container width */
        max-width: 290px; /* Make sure they don’t get too large */
    }

    .cards-container {
        flex-direction: column; /* Stack the cards vertically */
        gap: 15px; /* Smaller gap between cards */
    }
}
@media (max-width: 280px) {
    /* Extra Small Screens */
    .card-tow {
        width: 100%; /* Cards should take up the full screen width */
        max-width: 220px; /* Prevent overflow on very small screens */
        padding: 15px; /* Reduce padding on very small screens */
    }

    .cards-container {
        flex-direction: column; /* Stack cards vertically */
        gap: 10px; /* Tighten up space between cards */
    }
}




/* voice services*/
.voice-services {
    background-color: #f9f9f9;
    padding: 80px 0;
    text-align: center;
    transition: all 0.3s ease-in-out;
    display: none;
}

.voice-services h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #005bb5;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.voice-services p {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #333;
    line-height: 1.8;
    text-align: left;
}

/* Individual service blocks */
.taxi-limo, .retention, .tele-sales, .appointment-setting, 
.lead-generation, .technical-support, .direct-response, 
.customer-loyalty, .call-quality, .market-research {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.taxi-limo:hover, .retention:hover, .tele-sales:hover, .appointment-setting:hover, 
.lead-generation:hover, .technical-support:hover, .direct-response:hover, 
.customer-loyalty:hover, .call-quality:hover, .market-research:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

/* Image divs */
.image-div1, .image-div2, .image-div3, .image-div4, 
.image-div5, .image-div6, .image-div7, .image-div8, 
.image-div9, .image-div10 {
    flex: 1;
    max-width: 50%;
    margin-right: 30px;
    position: relative;
}

.image-div1 img, .image-div2 img, .image-div3 img, 
.image-div4 img, .image-div5 img, .image-div6 img, 
.image-div7 img, .image-div8 img, .image-div9 img, 
.image-div10 img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.image-div1 img:hover, .image-div2 img:hover, .image-div3 img:hover, 
.image-div4 img:hover, .image-div5 img:hover, .image-div6 img:hover, 
.image-div7 img:hover, .image-div8 img:hover, .image-div9 img:hover, 
.image-div10 img:hover {
    transform: scale(1.1);
}

/* Text divs */
.text-div1, .text-div2, .text-div3, .text-div4, 
.text-div5, .text-div6, .text-div7, .text-div8, 
.text-div9, .text-div10 {
    flex: 2;
    max-width: 50%;
}

.text-div1 h3, .text-div2 h3, .text-div3 h3, 
.text-div4 h3, .text-div5 h3, .text-div6 h3, 
.text-div7 h3, .text-div8 h3, .text-div9 h3, 
.text-div10 h3 {
    font-size: 26px;
    color: #0056b3;
    margin-bottom: 15px;
    font-weight: 600;
}

.text-div1 p, .text-div2 p, .text-div3 p, .text-div4 p, 
.text-div5 p, .text-div6 p, .text-div7 p, .text-div8 p, 
.text-div9 p, .text-div10 p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: 'Roboto', sans-serif;
}

/* Customer Service Section */
.customer-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.customer-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.customer-service .image-div11 {
    flex: 1;
    max-width: 45%;
    margin-right: 30px;
}

.customer-service .image-div11 img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.customer-service .image-div11 img:hover {
    transform: scale(1.1);
}

.customer-service .text-div11 {
    flex: 2;
    max-width: 50%;
}

.customer-service .text-div11 h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.customer-service .text-div11 p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    font-family: 'Roboto', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .voice-services {
        padding: 40px 20px;
    }

    .taxi-limo, .retention, .tele-sales, .appointment-setting, 
    .lead-generation, .technical-support, .direct-response, 
    .customer-loyalty, .call-quality, .market-research {
        flex-direction: column;
        padding: 25px;
    }

    .image-div1, .image-div2, .image-div3, .image-div4, 
    .image-div5, .image-div6, .image-div7, .image-div8, 
    .image-div9, .image-div10 {
        margin-right: 0;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .text-div1, .text-div2, .text-div3, .text-div4, 
    .text-div5, .text-div6, .text-div7, .text-div8, 
    .text-div9, .text-div10 {
        max-width: 100%;
    }
    .text-div1 h3, .text-div2 h3, .text-div3 h3, 
    .text-div4 h3, .text-div5 h3, .text-div6 h3, 
    .text-div7 h3, .text-div8 h3, .text-div9 h3, 
    .text-div10 h3
    {
        font-size: 7.2vw;
    }
    .customer-service {
        flex-direction: column;
        padding: 25px;
    }

    .customer-service .image-div11 {
        margin-right: 0;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .customer-service .text-div11 {
        max-width: 100%;
    }

    .customer-service .text-div11 h3 {
        font-size: 26px;
    }

    .customer-service .text-div11 p {
        font-size: 15px;
    }
}


/* non-voice services */
.non-service-voice-section {
    cursor: pointer;
    line-height: 2.4vw;
    margin-top: 4vw;
    color: #005bb5;
    display: none;
}

.non-voice-service h4 {
    font-size: 1.8vw;
    margin-bottom: 0.6vw;
    color: #005bb5;
}

.non-voice-service p {
    color: rgb(147, 147, 147);
}

.non-voice-service p:hover {
    color: #333;
}

.non-voice-service img {
    width: 20vw;
    height: 100%;
    object-fit: contain;
}

.heading-non-voice {
    font-size: 2.5vw;
    margin-bottom: 1vw;
    margin-left: 3vw;
}

.text-non-voice {
    font-size: 1.4vw;
    margin-left: 3vw;
    width: 90%;
    line-height: 2.4vw;
}

/* Divs */
.order-processing-div,
.main-biling,
.transcription-div,
.customer-main-div,
.technical-div,
.service-div-main,
.ware-house-main,
.book-keeping,
.data-entry {
    display: flex;
    gap: 8vw;
    padding: 5vw;
}

@media screen and (max-width: 768px) {
  
    .non-voice-service {
        margin-top: 5vw;
    }

    .non-voice-service h4 {
        font-size: 5vw;
        margin-bottom: 2vw;
    }

    .non-voice-service p {
        font-size: 3vw;
    }

    .non-voice-service img {
        width: 80%;
        height: auto;
        object-fit: contain;
    }

    .heading-non-voice {
        font-size: 6vw;
        margin-bottom: 2vw;
        margin-left: 5vw;
    }

    .text-non-voice {
        font-size: 4vw;
        margin-left: 5vw;
        width: 90%;
        line-height: 4vw;
    }

    .order-processing-div,
    .main-biling,
    .transcription-div,
    .customer-main-div,
    .technical-div,
    .service-div-main,
    .ware-house-main,
    .book-keeping,
    .data-entry {
        flex-direction: column;
        gap: 5vw;
        padding: 5vw 2vw;
    }

        .text-div-order,
        .text-biling-div,
        .text-transcription-div,
        .text-customer,
        .text-technical,
        .text-div-service,
        .ware-house-text,
        .text-book,
        .data-entry-text{
        line-height: 6vw;
       }
       
}

@media screen and (max-width: 480px) {
  
    .non-voice-service {
        margin-top: 7vw;
    }

    .non-voice-service h4 {
        font-size: 7vw;
        margin-bottom: 3vw;
    }

    .non-voice-service p {
        font-size: 4vw;
    }

    .non-voice-service img {
        width: 90%;
        height: auto;
    }

    .heading-non-voice {
        font-size: 8vw;
        margin-bottom: 3vw;
        margin-left: 5vw;
    }

    .text-non-voice {
        font-size: 5vw;
        margin-left: 5vw;
        width: 90%;
        line-height: 5vw;
    }

    .order-processing-div,
    .main-biling,
    .transcription-div,
    .customer-main-div,
    .technical-div,
    .service-div-main,
    .ware-house-main,
    .book-keeping,
    .data-entry {
        flex-direction: column;
        gap: 4vw;
        padding: 4vw 1vw;
    }
}
.non-voice-service img {
    width: 20vw;
    height: auto; 
    object-fit: contain; 
}

@media screen and (max-width: 768px) {
    .non-voice-service img {
        width: 80%;
        height: auto;
        object-fit: contain; 
    }
}

@media screen and (max-width: 480px) {
    .non-voice-service img {
        width: 90%;
        height: auto;
        object-fit: contain; 
    }
}
.non-voice-service h4 {
    font-size: 1.8vw;  
    margin-bottom: 0.6vw; 
}

@media screen and (max-width: 768px) {
    .non-voice-service h4 {
        font-size: 5vw;  
        margin-bottom: 2vw; 
        line-height: 10vw;
        color: #0056b3;
    }
    .non-voice-service
    {
        color: #005bb5;
    }
}

@media screen and (max-width: 480px) {
    .non-voice-service h4 {
        font-size: 7vw;  
        margin-bottom: 3vw;
        color: #0056b3;
    }
    .non-voice-service
    {
        color: #005bb5;
    }
}



/* website-development Styling */
.website-development {
    background: linear-gradient(135deg, #cce7ff, #ffffff);
    color: #003366;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5vw;
    cursor: pointer;
    display: none;
}
.container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2vw;
}
.content {
    flex: 1 1 50%;
    animation: slide-in 1s ease-in-out;
}
.image-web {
    flex: 1 1 40%;
    text-align: center;
}
.image-web img {
    width: 100%;
    transition: transform 0.3s ease;
}
.image-web img:hover {
    transform: scale(1.1);
}
.title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0056b3;
    animation: fade-in 1s ease-in-out;
}
.subtitle {
    font-size: 18px;
    margin-bottom: 15px;
    font-style: italic;
    color: #0096ff;
}
.description {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #003366;
}
.features-web {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    animation: fade-in-up 1.5s ease-out;
}
.features-web li {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s, background-color 0.4s, color 0.4s;
    position: relative;
}
.features-web li:hover {
    transform: translateY(-10px);
    background: #99CCFF;
    color: #fff;
}
.features-web li:hover i {
    color: #fff;
}
.features-web i {
    font-size: 24px;
    color: #0066cc;
}
.features-web li::after {
    content: attr(data-hover);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #00CCFF;
    color: #fff;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    transform: translateY(-100%);
    transition: top 0.4s;
    opacity: 0;
}

.features-web li:hover::after {
    top: 0;
    opacity: 1;
}

/* Media Query for screens <= 1100px */

/* Small to Medium Screens */
@media (max-width: 1024px) {

    /* Adjust container and layout */
    .container {
        flex-direction: column;
        gap: 10vw;
    }

    /* Adjust content and image width for smaller screens */
    .content, .image-web {
        flex: 1 1 100%;
        text-align: center;
    }

    /* Adjust the title size for better readability */
    .title {
        font-size: 30px;
    }

    /* Adjust subtitle and description sizes */
    .subtitle {
        font-size: 16px;
    }

    .description {
        font-size: 14px;
        text-align: left;
    }


    .features-web {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .features-web li {
        flex-direction: column;
        padding: 15px;
    }

    .features-web i {
        font-size: 22px;
    }

    .features-web li::after {
        font-size: 12px;
    }
}
@media (max-width: 250px) {
    .website-development {
        background: linear-gradient(135deg, #cce7ff, #ffffff);
        color: #003366;
        padding: 15px 5px; /* Adjusted padding */
        display: block; /* Changed to block for stacking */
        width: 100%; /* Ensures it fits within container */
        box-sizing: border-box; /* Prevents overflow */
        text-align: right; /* Align all text to the right */
    }

    .container {
        display: flex;
        flex-direction: column; /* Stack elements vertically */
        width: 100%;
        max-width: 100%;
        gap: 5vw; /* Reduced gap for tight spaces */
        box-sizing: border-box; /* Prevent overflow */
        justify-content: flex-end; /* Align all content to the right */
    }

    .content {
        flex: 1 1 100%; /* Content takes full width */
        text-align: right; /* Align content text to the right */
        animation: slide-in 1s ease-in-out;
        word-wrap: break-word; /* Wrap text inside */
        overflow-wrap: break-word; /* Prevent overflow */
        padding: 0 5px; /* Add small padding */
    }

    .image-web {
        flex: 1 1 100%; /* Image takes full width */
        text-align: right; /* Align the image to the right */
        margin-bottom: 15px; /* Reduced margin */
    }

    .image-web img {
        width: 80%; /* Scale down image */
        max-width: 100%; /* Ensure image doesn't overflow */
        transition: transform 0.3s ease;
    }

    .image-web img:hover {
        transform: scale(1.05); /* Slightly smaller zoom effect */
    }

    .title {
        font-size: 18px; /* Reduced title size */
        margin-bottom: 10px;
        color: #0056b3;
        animation: fade-in 1s ease-in-out;
        word-wrap: break-word; /* Prevent overflow */
        text-align: right; /* Align title text to the right */
    }

    .subtitle {
        font-size: 10px; /* Reduced subtitle size */
        margin-bottom: 8px;
        font-style: italic;
        color: #0096ff;
        word-wrap: break-word; /* Prevent overflow */
        text-align: right; /* Align subtitle text to the right */
    }

    .description {
        margin-bottom: 10px; /* Reduced margin */
        line-height: 1.3;
        font-size: 10px; /* Smaller font size */
        color: #003366;
        word-wrap: break-word; /* Prevent overflow */
        text-align: right; /* Align description text to the right */
    }

    .features-web {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: 1fr; /* Stack the list items */
        gap: 5px; /* Reduced gap */
        animation: fade-in-up 1.5s ease-out;
        width: 100%; /* Ensure the features fit the container */
        box-sizing: border-box; /* Prevent overflow */
        text-align: right; /* Align feature list text to the right */
    }

    .features-web li {
        display: flex;
        flex-direction: column; /* Stack the content vertically */
        align-items: flex-end; /* Align items to the right */
        gap: 8px; /* Smaller gap */
        background: #fff;
        padding: 8px; /* Reduced padding */
        border-radius: 6px; /* Smaller border radius */
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.4s, background-color 0.4s, color 0.4s;
        position: relative;
        word-wrap: break-word; /* Prevent overflow */
        overflow-wrap: break-word; /* Prevent overflow */
    }

    .features-web li:hover {
        transform: translateY(-5px); /* Slight hover effect */
        background: #99CCFF;
        color: #fff;
    }

    .features-web i {
        font-size: 18px; /* Smaller icon size */
        color: #0066cc;
    }

    .features-web li::after {
        content: attr(data-hover);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #00CCFF;
        color: #fff;
        padding: 5px;
        font-size: 10px; /* Smaller font size */
        text-align: center;
        transform: translateY(-100%);
        transition: top 0.4s;
        opacity: 0;
    }

    .features-web li:hover::after {
        top: 0;
        opacity: 1;
    }
}




/* App Development Section */
.app-development {
    background: linear-gradient(135deg, #cce7ff, #ffffff);
    color: #333;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer;
    display: none;
}
.image {
    flex: 1 1 45%;
    text-align: center;
    overflow: hidden;
    margin-bottom: 20px;
}
.image img {
    max-width: 100%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.image img:hover {
    transform: scale(1.1);
}
.content {
    flex: 1 1 50%;
    padding-left: 30px;
    animation: slide-in 1s ease-in-out;
}
.title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #003366;
    font-weight: bold;
    animation: fade-in 1s ease-in-out;
}
.subtitle {
    font-size: 22px;
    margin-bottom: 20px;
    font-style: italic;
    color: #0066cc;
    font-weight: 500;
}
.description, .extra-description {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    text-align: left;
    animation: fade-in-up 1.5s ease-out;
}
.features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    animation: fade-in-up 1.5s ease-out;
}
.features li {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s, background-color 0.4s, color 0.4s;
    position: relative;
}
.features li:hover {
    transform: translateY(-10px);
    background: #99ccff;
    color: #003366;
}
.features i {
    font-size: 30px;
    color: #0066cc;
}
.features li:hover i {
    color: #fff;
}
.features li::after {
    content: attr(data-hover);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #00ccff;
    color: #fff;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    transform: translateY(-100%);
    transition: top 0.4s;
    opacity: 0;
}
.features li:hover::after {
    top: 0;
    opacity: 1;
}

/* Button Styling */
.button-group {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
button {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
button:hover {
    background: #004b80;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
button:focus {
    outline: none;
}

/* Animations */
@keyframes slide-in {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fade-in-up {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Media Queries for Responsiveness */

/* For screens 1000px or smaller */
@media screen and (max-width: 1000px) {
    .app-development {
        padding: 60px 15px;
    }
    
    .image {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .content {
        flex: 1 1 100%;
        padding-left: 0;
        text-align: center;
    }

    .title {
        font-size: 32px;
        text-align: center;
    }

    .subtitle {
        font-size: 20px;
        text-align: center;
    }

    .description, .extra-description {
        font-size: 16px;
        text-align: center;
    }

    .features {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .features li {
        padding: 15px;
        font-size: 16px;
    }

    button {
        padding: 12px 25px;
        font-size: 16px;
    }
}

/* For screens 800px or smaller */
@media screen and (max-width: 800px) {
    .image {
        flex: 1 1 100%;
    }

    .content {
        flex: 1 1 100%;
        padding: 15px;
    }

    .title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 18px;
    }

    .description, .extra-description {
        font-size: 14px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .features li {
        padding: 12px;
        font-size: 14px;
    }

    button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* For screens 600px or smaller */
@media screen and (max-width: 600px) {
    .app-development {
        padding: 50px 10px;
    }

    .image {
        flex: 1 1 100%;
    }

    .content {
        flex: 1 1 100%;
        padding: 10px;
    }

    .title {
        font-size: 24px;
    }

    .subtitle {
        font-size: 16px;
    }

    .description, .extra-description {
        font-size: 12px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .features li {
        padding: 10px;
        font-size: 12px;
    }

    button {
        padding: 8px 15px;
        font-size: 12px;
    }
}



/* Internet Marketing Section */
.internet-marketing {
    background: linear-gradient(135deg, #cce7ff, #ffffff);
    color: #333;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer;
    display: none;
}

.container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.image {
    flex: 1 1 45%;
    text-align: center;
    margin-bottom: 20px;
}

.image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.image img:hover {
    transform: scale(1.1);
}

.content {
    flex: 1 1 50%;
    padding-left: 30px;
    animation: slide-in 1s ease-in-out;
}

.title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #003366;
    font-weight: bold;
    animation: fade-in 1s ease-in-out;
}

.subtitle {
    font-size: 22px;
    margin-bottom: 20px;
    font-style: italic;
    color: #0066cc;
    font-weight: 500;
}

.description, .extra-description {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    text-align: left;
    animation: fade-in-up 1.5s ease-out;
}

/* Animations */
@keyframes slide-in {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade-in-up {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Media Queries for Responsiveness */

/* For screens 1000px or smaller */
@media screen and (max-width: 1000px) {
    .internet-marketing {
        padding: 60px 20px;
    }

    .container {
        flex-direction: column;
        justify-content: center;
    }

    .image {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .content {
        flex: 1 1 100%;
        padding-left: 0;
        text-align: center;
    }

    .title {
        font-size: 32px;
        text-align: center;
    }

    .subtitle {
        font-size: 20px;
        text-align: center;
    }

    .description, .extra-description {
        font-size: 16px;
        text-align: left;
    }
}

/* For screens 800px or smaller */
@media screen and (max-width: 800px) {
    .image {
        flex: 1 1 100%;
    }

    .content {
        flex: 1 1 100%;
        padding: 15px;
    }

    .title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 18px;
    }

    .description, .extra-description {
        font-size: 14px;
        text-align: left;
    }
}

/* For screens 600px or smaller */
@media screen and (max-width: 600px) {
    .internet-marketing {
        padding: 50px 15px;
    }

    .image {
        flex: 1 1 100%;
    }

    .content {
        flex: 1 1 100%;
        padding: 10px;
    }

    .title {
        font-size: 24px;
    }

    .subtitle {
        font-size: 16px;
    }

    .description, .extra-description {
        font-size: 12px;
        text-align: left;
    }
}



/* Financial Services Section */
.financial-services {
    background: linear-gradient(135deg, #cce7ff, #ffffff);
    color: #333;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer;
    display: none;
}

.container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.image {
    flex: 1 1 45%;
    text-align: center;
    margin-bottom: 20px;
}

.image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.image img:hover {
    transform: scale(1.1);
}

.content {
    flex: 1 1 50%;
    padding-left: 30px;
    animation: slide-in 1s ease-in-out;
}

.title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #003366;
    font-weight: bold;
    animation: fade-in 1s ease-in-out;
}

.subtitle {
    font-size: 22px;
    margin-bottom: 20px;
    font-style: italic;
    color: #0066cc;
    font-weight: 500;
}

.description, .extra-description {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    animation: fade-in-up 1.5s ease-out;
}

/* Animations */
@keyframes slide-in {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade-in-up {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media screen and (max-width: 1000px) {
    .financial-services {
        padding: 60px 20px;
    }

    .container {
        flex-direction: column;
        justify-content: center;
    }

    .image {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .content {
        flex: 1 1 100%;
        padding-left: 0;
        text-align: center;
    }

    .title {
        font-size: 32px;
        text-align: center;
    }

    .subtitle {
        font-size: 20px;
        text-align: center;
    }

    .description, .extra-description {
        font-size: 16px;
        text-align: left;
    }
}

/* For screens 800px or smaller */
@media screen and (max-width: 800px) {
    .image {
        flex: 1 1 100%;
    }

    .content {
        flex: 1 1 100%;
        padding: 15px;
    }

    .title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 18px;
    }

    .description, .extra-description {
        font-size: 14px;
        text-align: left;
    }
}

/* For screens 600px or smaller */
@media screen and (max-width: 600px) {
    .financial-services {
        padding: 50px 15px;
    }

    .image {
        flex: 1 1 100%;
    }

    .content {
        flex: 1 1 100%;
        padding: 10px;
    }

    .title {
        font-size: 24px;
    }

    .subtitle {
        font-size: 16px;
    }

    .description, .extra-description {
        font-size: 12px;
        text-align: left;
    }
}



/* Healthcare Services Section */
.healthcare-services {
    background: linear-gradient(135deg, #cce7ff, #ffffff);
    color: #333;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer;
    display: none;
}

.container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.image {
    flex: 1 1 45%;
    text-align: center;
    margin-bottom: 20px;
}

.image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.image img:hover {
    transform: scale(1.1);
}

.content {
    flex: 1 1 50%;
    padding-left: 30px;
    animation: slide-in 1s ease-in-out;
}

.title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #003366;
    font-weight: bold;
    animation: fade-in 1s ease-in-out;
}

.subtitle {
    font-size: 22px;
    margin-bottom: 20px;
    font-style: italic;
    color: #0066cc;
    font-weight: 500;
}

.description, .extra-description {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    animation: fade-in-up 1.5s ease-out;
}

/* Animations */
@keyframes slide-in {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade-in-up {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


@media screen and (max-width: 1000px) {
    .healthcare-services {
        padding: 60px 20px;
    }

    .container {
        flex-direction: column;
        justify-content: center;
    }

    .image {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .content {
        flex: 1 1 100%;
        padding-left: 0;
        text-align: center;
    }

    .title {
        font-size: 32px;
        text-align: center;
    }

    .subtitle {
        font-size: 20px;
        text-align: center;
    }

    .description, .extra-description {
        font-size: 16px;
        text-align: left;
    }
}

/* For screens 800px or smaller */
@media screen and (max-width: 800px) {
    .image {
        flex: 1 1 100%;
    }

    .content {
        flex: 1 1 100%;
        padding: 15px;
    }

    .title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 18px;
    }

    .description, .extra-description {
        font-size: 14px;
        text-align: left;
    }
}

/* For screens 600px or smaller */
@media screen and (max-width: 600px) {
    .healthcare-services {
        padding: 50px 15px;
    }

    .image {
        flex: 1 1 100%;
    }

    .content {
        flex: 1 1 100%;
        padding: 10px;
    }

    .title {
        font-size: 24px;
    }

    .subtitle {
        font-size: 16px;
    }

    .description, .extra-description {
        font-size: 12px;
        text-align: left;
    }
}



/* Telecommunication Services Section */
.telecommunication-services {
    background: linear-gradient(135deg, #cce7ff, #ffffff);
    color: #333;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer;
    display: none;
}

.container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.image {
    flex: 1 1 45%;
    text-align: center;
    margin-bottom: 20px;
}

.image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.image img:hover {
    transform: scale(1.1);
}

.content {
    flex: 1 1 50%;
    padding-left: 30px;
    animation: slide-in 1s ease-in-out;
}

.title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #003366;
    font-weight: bold;
    animation: fade-in 1s ease-in-out;
}

.subtitle {
    font-size: 22px;
    margin-bottom: 20px;
    font-style: italic;
    color: #0066cc;
    font-weight: 500;
}

.description, .extra-description {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    animation: fade-in-up 1.5s ease-out;
}

/* Animations */
@keyframes slide-in {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade-in-up {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive for screens 1000px or smaller */
@media screen and (max-width: 1000px) {
    .telecommunication-services {
        padding: 60px 20px;
    }

    .container {
        flex-direction: column;
        justify-content: center;
    }

    .image {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .content {
        flex: 1 1 100%;
        padding-left: 0;
        text-align: center;
    }

    .title {
        font-size: 32px;
        text-align: center;
    }

    .subtitle {
        font-size: 20px;
        text-align: center;
    }

    .description, .extra-description {
        font-size: 16px;
        text-align: left;
    }
}

/* Additional media query for smaller screens (<= 800px) */
@media screen and (max-width: 800px) {
    .image {
        flex: 1 1 100%;
    }

    .content {
        flex: 1 1 100%;
        padding: 15px;
    }

    .title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 18px;
    }

    .description, .extra-description {
        font-size: 14px;
        text-align: left;
    }
}

/* For screens <= 600px */
@media screen and (max-width: 600px) {
    .telecommunication-services {
        padding: 50px 15px;
    }

    .image {
        flex: 1 1 100%;
    }

    .content {
        flex: 1 1 100%;
        padding: 10px;
    }

    .title {
        font-size: 24px;
    }

    .subtitle {
        font-size: 16px;
    }

    .description, .extra-description {
        font-size: 12px;
        text-align: left;
    }
}



/* Consumer Packaged Goods Section */
.consumer-packaged-goods {
    background: linear-gradient(135deg, #cce7ff, #ffffff);
    color: #333;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer;
    display: none;
}
.container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.image {
    flex: 1 1 45%;
    text-align: center;
    margin-bottom: 20px;
}
.image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.image img:hover {
    transform: scale(1.1);
}
.content {
    flex: 1 1 50%;
    padding-left: 30px;
    animation: slide-in 1s ease-in-out;
}
.title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #003366;
    font-weight: bold;
    animation: fade-in 1s ease-in-out;
}
.subtitle {
    font-size: 22px;
    margin-bottom: 20px;
    font-style: italic;
    color: #0066cc;
    font-weight: 500;
}
.description {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    animation: fade-in-up 1.5s ease-out;
}

/* Package Grid */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.package {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, background-color 0.3s ease;
}
.package p {
    text-align: left;
}
.package h3 {
    font-size: 24px;
    color: #003366;
    margin-bottom: 15px;
}
.package-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}
.package-btn {
    background: #0066cc;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.package-btn:hover {
    background: #004b80;
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes slide-in {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fade-in-up {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design for screens smaller than 1000px */
@media screen and (max-width: 1000px) {
    .container {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .image {
        flex: 1 1 100%;
        margin-bottom: 30px;
    }

    .content {
        flex: 1 1 100%;
        padding-left: 0;
    }

    .title {
        font-size: 32px;
    }

    .subtitle {
        font-size: 20px;
    }

    .description {
        font-size: 16px;
    }

    .package-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Adjusted minimum width */
    }

    .package h3 {
        font-size: 20px;
    }

    .package-description {
        font-size: 14px;
    }

    .package-btn {
        padding: 10px 20px;
    }
}

/* Further responsive for screens smaller than 600px */
@media screen and (max-width: 600px) {
    .title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 18px;
    }

    .description {
        font-size: 14px;
    }

    .package h3 {
        font-size: 18px;
    }

    .package-description {
        font-size: 12px;
    }

    .package-btn {
        padding: 8px 18px;
    }
}
/* Responsive Design for 280px wide screens */
@media screen and (max-width: 280px) {
    .container {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px; /* Reduced padding for tight spaces */
    }

    .image {
        flex: 1 1 100%;
        margin-bottom: 15px; /* Reduced bottom margin for image */
    }

    .content {
        flex: 1 1 100%;
        padding-left: 0;
        margin-bottom: 15px;
    }

    .title {
        font-size: 18px; /* Smaller font for small screens */
        margin-bottom: 10px;
    }

    .subtitle {
        font-size: 14px; /* Smaller subtitle */
        margin-bottom: 10px;
    }

    .description {
        font-size: 12px; /* Smaller description text */
        margin-bottom: 15px;
    }

    .package-grid {
        grid-template-columns: 1fr; /* Single column layout for very small screens */
    }

    .package {
        padding: 10px;
        margin: 5px 0; /* Adjusted margin to fit tightly */
    }

    .package h3 {
        font-size: 14px; /* Smaller title for package */
    }

    .package-description {
        font-size: 12px; /* Smaller description inside packages */
    }

    .package-btn {
        padding: 6px 12px; /* Smaller button padding */
        font-size: 12px;
    }
}


/* Responsive Design for image on screens 912px and smaller */
@media screen and (max-width: 912px) {
    .image {
        flex: 1 1 100%;
        text-align: center;
        margin-bottom: 20px; /* Adjust margin for spacing */
    }

    .image img {
        max-width: 100%; /* Make the image width responsive */
        border-radius: 15px;
        margin-left: 15vw;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
}


/* E-Commerce Section */
.e-commerce {
    background: linear-gradient(135deg, #cce7ff, #ffffff);
    color: #333;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer;
    display: none;
}
.container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.image {
    flex: 1 1 45%;
    text-align: center;
    margin-bottom: 20px;
}
.image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.image img:hover {
    transform: scale(1.1);
}
.content {
    flex: 1 1 50%;
    padding-left: 30px;
    animation: slide-in 1s ease-in-out;
}
.title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #003366;
    font-weight: bold;
    animation: fade-in 1s ease-in-out;
}
.subtitle {
    font-size: 22px;
    margin-bottom: 20px;
    font-style: italic;
    color: #0066cc;
    font-weight: 500;
}
.description {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    animation: fade-in-up 1.5s ease-out;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.service {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, background-color 0.3s ease;
}
.service h3 {
    font-size: 24px;
    color: #003366;
    margin-bottom: 15px;
}
.service-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Animations */
@keyframes slide-in {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fade-in-up {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, background-color 0.3s ease;
}

.service h3,
.service-description {
    color: #003366;
    transition: color 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
}

/* Blue background effect */
.service::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0066cc;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    z-index: -1; /* Ensure it is behind the content */
}

/* Change background and text color on hover */
.service:hover::before {
    transform: translateY(0);
}

.service:hover h3,
.service:hover .service-description {
    color: #ffffff;
}
/* Responsive Styles for screens 1000px and below */
@media (max-width: 1000px) {
    /* Container adjustments */
    .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .image {
        flex: 1 1 100%;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .image img {
        max-width: 80%; /* Scale down the image size for smaller screens */
        margin: 0 auto; /* Center horizontally */
    }

    .content {
        flex: 1 1 100%;
        padding-left: 0;
        text-align: center;
    }

    .title {
        font-size: 36px;
    }

    .subtitle {
        font-size: 20px;
    }

    .description {
        font-size: 16px;
    }

    /* Service Grid adjustments */
    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .service {
        padding: 15px;
    }

    .service h3 {
        font-size: 22px;
    }

    .service-description {
        font-size: 14px;
        text-align: left;
    }
}

/* Responsive Styles for screens 768px and below */
@media (max-width: 768px) {
    .title {
        font-size: 32px;
    }

    .subtitle {
        font-size: 18px;
    }

    .description {
        font-size: 14px;
    }

    .image img {
        max-width: 90%; /* Further reduce the size for smaller devices */
    }

    .service-grid {
        gap: 15px;
    }

    .service h3 {
        font-size: 20px;
    }
}

/* Responsive Styles for screens 480px and below */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .image img {
        max-width: 100%; /* Full width for very small devices */
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service {
        padding: 10px;
    }

    .title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
    }

    .description {
        font-size: 12px;
    }

    .service h3 {
        font-size: 18px;
    }

    .service-description {
        font-size: 12px;
        text-align: left;
    }
}




/* Education Section*/
.education-section {
    background: linear-gradient(135deg, #cce7ff, #ffffff);
    padding: 80px 20px;
    color: #002244;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer;
    display: none;
}

.education-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.education-content {
    flex: 1 1 50%;
    animation: fade-in 1s ease-out;
}

.education-title {
    font-size: 42px;
    font-weight: bold;
    color: #004080;
    margin-bottom: 20px;
    animation: slide-in-left 1s ease-in-out;
}

.education-description {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    animation: fade-in-up 1s ease-in-out;
}

.education-highlights h3 {
    font-size: 24px;
    color: #00509e;
    margin-bottom: 15px;
    animation: fade-in-down 1s ease-in-out;
}

.education-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    animation: fade-in-up 1.5s ease-out;
}

.education-highlights li {
    background: #eaf3fc;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    line-height: 1.5;
    color: #002244;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.education-highlights li:hover {
    transform: translateY(-5px);
    background: #004080;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.education-summary {
    font-size: 18px;
    color: #002244;
    margin-top: 30px;
    animation: slide-in-right 1s ease-in-out;
}

.education-image {
    flex: 1 1 40%;
    text-align: center;
    animation: zoom-in 1.5s ease-out;
}

.education-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.education-image img:hover {
    transform: scale(1.05);
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoom-in {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
/* Responsive Styles */

/* For screens 1000px and below */
@media (max-width: 1000px) {
    .education-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .education-content {
        flex: 1 1 100%;
    }

    .education-image {
        flex: 1 1 100%;
    }

    .education-title {
        font-size: 36px;
    }

    .education-description {
        font-size: 16px;
    }

    .education-highlights h3 {
        font-size: 22px;
    }

    .education-highlights ul {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .education-highlights li {
        font-size: 15px;
    }
}

/* For screens 768px and below */
@media (max-width: 768px) {
    .education-title {
        font-size: 32px;
    }

    .education-description {
        font-size: 14px;
    }

    .education-highlights ul {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .education-highlights li {
        font-size: 14px;
    }

    .education-summary {
        font-size: 16px;
    }

    .education-image img {
        max-width: 90%; /* Scale image slightly for smaller screens */
    }
}

/* For screens 480px and below */
@media (max-width: 480px) {
    .education-section {
        padding: 40px 10px;
    }

    .education-title {
        font-size: 28px;
    }

    .education-description {
        font-size: 12px;
    }

    .education-highlights ul {
        grid-template-columns: 1fr;
    }

    .education-highlights li {
        font-size: 13px;
    }

    .education-image img {
        max-width: 100%; /* Full width for small devices */
    }
}




/*Contact -us styling  */
.contact-container {
    max-width: 1200px;
    width: 90%;
    margin: 40px auto;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeInContainer 1.5s ease-out forwards;
    font-family: roboto;
    display: none;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
}

.contact-header h1 {
    font-size: 2.8rem;
    color: #007bff;
    margin-bottom: 15px;
    animation: slideInFromLeft 1s ease-out forwards;
}

.contact-header p {
    font-size: 1.2rem;
    color: #555;
    animation: slideInFromLeft 1s ease-out 0.5s forwards;
}

/* Contact Content - Grid Layout */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
}

/* Contact Info */
.contact-info h2 {
    font-size: 1.8rem;
    color: #007bff;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s ease-out 2s forwards;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 2.5s forwards;
}

.contact-info .info-item i {
    font-size: 1.5rem;
    color: #007bff;
    margin-right: 15px;
}

.contact-info a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #0056b3;
}

/* Contact Form */
.contact-form h2 {
    font-size: 1.8rem;
    color: #007bff;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s ease-out 3s forwards;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: black;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #007bff;
}

.contact-form textarea {
    resize: none;
    height: 150px;
}

.contact-form button {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background: #0056b3;
    transform: scale(1.05);
    animation: buttonHover 0.5s ease-out forwards;
}

/* Social Media Links */
.social-links {
    text-align: center;
    margin-top: 30px;
    opacity: 0;
    animation: fadeIn 1s ease-out 3.5s forwards;
}

.social-links p {
    font-size: 1.2rem;
    color: black;
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    width: 50px;
    height: 50px;
    margin: 0 10px;
    background-color: #007bff;
    color: white;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 22px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}


@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-header h1 {
        font-size: 2.4rem;
    }

    .contact-header p {
        font-size: 1.1rem;
    }

    .contact-info h2, .contact-form h2 {
        font-size: 1.5rem;
    }

    .contact-form input, .contact-form textarea {
        padding: 10px;
        font-size: 1rem;
    }

    .contact-form button {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .social-links a {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 20px;
    }
}


@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .contact-container {
        padding: 20px;
    }

    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-header p {
        font-size: 1rem;
    }

    .contact-info h2, .contact-form h2 {
        font-size: 1.3rem;
    }

    .contact-form input, .contact-form textarea {
        padding: 8px;
        font-size: 0.9rem;
    }

    .contact-form button {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
    }
}


@keyframes fadeInContainer {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes buttonHover {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@media (max-width: 280px) {
    .contact-container {
        padding: 15px;
        margin: 20px auto;
    }

    .contact-header h1 {
        font-size: 1.8rem; 
        margin-bottom: 10px;
    }

    .contact-header p {
        font-size: 0.9rem;
    }

    .contact-content {
        grid-template-columns: 1fr; 
        gap: 15px;
    }

    .contact-info h2, .contact-form h2 {
        font-size: 1.2rem;
    }

    .contact-form label {
        font-size: 0.9rem; 
    }

    .contact-form input, .contact-form textarea {
        padding: 8px;
        font-size: 0.8rem;
    }

    .contact-form button {
        padding: 8px 15px;
        font-size: 0.9rem; 
    }

    .social-links p {
        font-size: 0.9rem; 
    }

    .social-links a {
        width: 35px; 
        height: 35px;
        line-height: 35px;
        font-size: 16px;
    }
}
@media (max-width: 280px) {
    .contact-form input, 
    .contact-form textarea {
        width: 100%;
        padding: 6px; 
        font-size: 0.8rem; 
        border: 1px solid #ccc; 
        border-radius: 6px; 
        box-sizing: border-box; 
    }

    .contact-form textarea {
        height: 100px; 
    }

    .contact-form button {
        width: 100%; 
        padding: 8px; 
        font-size: 0.9rem;
        border-radius: 6px;
    }
}




/* General Footer Styles */
.footer {
    background-color: #1a1a2e;
    color: #eaeaea; 
    padding: 60px 20px;
    font-family: 'Roboto', sans-serif;
}

.footer .container {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Section Styles */
.footer-section {
    flex: 1 1 30%;
    min-width: 250px;
}

/* Footer Section Styles */
.footer-section h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #00d4ff;
    text-transform: uppercase;
    display: inline-block; 
    border-bottom: 2px solid #00d4ff;
    padding-bottom: 5px;
    width: auto; 
}


.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #eaeaea;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00d4ff;
}

/* Contact Information */
.footer-section p {
    margin: 10px 0;
    line-height: 1.8;
    font-size: 1rem;
    color: #cccccc;
}

.footer-section i {
    margin-right: 10px;
    color: #00d4ff;
    font-size: 1.2rem;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: flex-start;
}

.social-icons a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.4rem;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #00d4ff;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: transparent;
}

.social-icons a:hover {
    background-color: #00d4ff;
    color: #1a1a2e; /* Icon color changes to match the footer background */
    transform: scale(1.1); /* Slight zoom effect */
}
.social-icons i:hover
{
    color: #fff;
}


/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #2e2e3e;
    font-size: 0.9rem;
    color: #cccccc;
}

.footer-bottom a {
    color: #00d4ff;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
}
.social-icons i
{
 margin-left: 1vw;
}

@media (max-width: 1000px) {
    .footer .container {
        flex-direction: column; 
        align-items: center;
        text-align: center; 
    }

    .footer-section {
        flex: 1 1 100%; 
        margin-bottom: 20px; 
    }

    .footer-section h4 {
        font-size: 1.4rem; 
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-section p {
        font-size: 0.9rem; 
    }

    .social-icons a {
        width: 45px; 
        height: 45px;
        font-size: 1.2rem;
    }

    .footer-bottom {
        font-size: 0.8rem; 
    }
}
@media (max-width: 280px) {
    .footer .container {
        flex-direction: column;
        align-items: center; 
        text-align: center; 
    }

    .footer-section {
        flex: 1 1 100%; 
        margin-bottom: 10px; 
        word-wrap: break-word;
    }
    .contact-number p {
        margin-right: 8vw;
    }
    .footer-section a {
        word-wrap: break-word; 
        overflow-wrap: break-word; 
        white-space: normal; 
    }

    .footer-section h4 {
        font-size: 1rem;
    }
    .social-icons i
    {
     margin-left: 3vw;
    }
    .footer-links a {
        font-size: 0.8rem;
        word-wrap: break-word; 
        white-space: normal;
        overflow-wrap: break-word;
    }

    .footer-section p {
        font-size: 0.8rem; 
        word-wrap: break-word;
        white-space: normal; 
        overflow-wrap: break-word; 
    }

    .social-icons a {
        width: 35px; 
        height: 35px;
        font-size: 2rem; 
    }

    .footer-bottom {
        font-size: 0.7rem; 
    }
}



