* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #ffffff; /* Default text color */
                        background: linear-gradient(135deg, #1A1A52 0%, #000000 50%, #4B0082 100%);

        }



       
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: +999;
    background-color: rgb(25, 34, 83);
}
.img-fluid-logo,.img-fluid2{
    filter: brightness(150%) !important;
}

.navbar-nav li a {
    position: relative;
    /* text-shadow: 0 8px 16px rgb(156, 99, 206); */

    font-weight: 500;
    transition: .5s;
    padding: 0px 20px !important;

    &:hover {
        background: linear-gradient(to right, #005ee2, #9100f1, #ce0aff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        /* for firefox  */
        color: transparent;
        transform: scale(1.01);
    }
}

.navbar-nav li a::before {
    position: absolute;
    content: '';
    height: 2px;
    width: 0%;
    bottom: 0;
    left: 0;
    background-color: var(--color-accent-glow);
    transition: .5s linear;
    margin: 0px 0px -10px 0px;
    display: inline-block;
}

.navbar-nav li a:hover:before {
    width: 100%;
}

@media (max-width:768px) {
    .navbar-nav li a::before {
        position: absolute;
        content: '';
        height: 2px;
        width: 0%;
        bottom: 0;
        left: 0;
        background-color: var(--color-accent-glow);
        transition: .5s linear;
        margin: 0px 0px -1px 0px;
        display: inline-block;
    }

    .navbar-nav li a:hover:before {
        width: 30%;
    }
}

.dropdown-menu {
    border-radius: 0px !important;
    border: 2px solid rgba(134, 134, 245, 0.151) !important;
}

.dropdown-menu li {
    padding: 0px 0px 15px 0px;
}

.dropdown-menu li a {
    text-decoration: none;
    
    &:hover {
        background-color: rgba(245, 239, 255, 0.384);
    }
}




.nav-btn {
    border-radius: 5px;
    padding: 10px 15px !important;
    color: white;
    background-color: transparent;
    border: 2px solid rgb(255, 255, 255);
}
.nav-btn:hover {
    border-radius: 5px;
    padding: 5px;
    border: 2px solid rgb(255, 255, 255);
}

@media (max-width:768px) {
    .nav-btn {
        margin-bottom: 20px;
    }

    .nav-item {
        margin: 10px 0px !important;

    }

}


@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar .dropdown .dropdown-menu {
        display: none;
        transition: display 0.5s ease-in-out;
    }


    .navbar .dropdown:hover .dropdown-toggle::after {
        transform: rotate(-180deg);
        transition: transform 0.5s;
    }
}



    /* --- Inner Container (for centering and width) --- */
    .container {
        max-width: 1200px; /* Max width to match content sections */
        margin: 0 auto; /* Center the container */
        padding: 0 20px; /* Horizontal padding for smaller screens */
        display: flex;
        align-items: center;
        justify-content: space-between; /* To push items to edges if more links are added */
    }

    /* --- Logo/Brand Styling (Malhotra IT) --- */
    .navbar-brand {
        font-size: 1.8rem;
        font-weight: 800;
        text-decoration: none;
        
        /* Gradient text color (Blue to White) to match the headings */
        background: linear-gradient(90deg, #4d7cff 0%, #ffffff 50%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 0 8px rgba(77, 124, 255, 0.4); /* Subtle glow */
        
        transition: all 0.3s ease;
    }

    /* Anchor Tag Styling */
    .navbart a {
        text-decoration: none;
    }

    /* Hover effect for the brand */
    .navbar-brand:hover {
        opacity: 0.9;
    }

    /* --- Responsive Adjustments --- */
    @media (max-width: 768px) {
        .navbar-brand {
            font-size: 1.5rem;
        }
    }

.contact-btn{
    color: white;
    background-color: #005ee2;
    border: 2px solid #005ee2;
    padding: 10px;
    border-radius: 5px;
}


        /* Hero Section Styling */
        .hero-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            height: 90vh; /* Full viewport height */
            padding: 20px;
            /* Background gradient similar to the image */
            /* Optional: Add a subtle overlay for the grid effect shown in the image */
            position: relative;
            overflow: hidden;
        }

        /* Hero Text Container */
        .hero-content {
            max-width: 600px;
            z-index: 10; /* Ensure content is above any background effects */
        }

        /* Tagline/Partner Badge */
        .partner-badge {
            font-size: 0.9rem;
            font-weight: 400;
            color: #c0c0ff;
            margin-bottom: 20px;
            padding: 5px 15px;
            border: 1px solid rgba(192, 192, 255, 0.3);
            border-radius: 20px;
            display: inline-flex;
            align-items: center;
            background-color: rgba(30, 30, 70, 0.5);
            /* Icon for the badge (using a basic star here) */
        }
        @media (max-width:768px) {
            .hero-section{
                justify-content: start;
            }
        }

        .partner-badge::before {
            content: '✦';
            margin-right: 8px;
            color: #4c66af; /* A contrasting color for the icon */
        }

        /* Main Heading - Malhotra IT Innovations */
        .main-heading {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 10px;
        }

        .heading-malhotra {
            color: #8496ff; /* Blue/Purple shade */
            text-shadow: 0 0 10px rgba(132, 150, 255, 0.5);
        }

        .heading-innovations {
            color: #ffffff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        /* Sub-Heading/Tagline */
        .sub-heading {
            font-size: 1.5rem;
            font-weight: 600;
            color: #c0c0ff;
            margin-top: 20px;
            margin-bottom: 15px;
        }

        /* Description Paragraph */
        .description {
            font-size: 1rem;
            font-weight: 300;
            color: #e0e0e0;
            margin-bottom: 40px;
            line-height: 1.5;
            text-align: center;
        }

        /* Buttons Container */
        .cta-buttons {
            display: flex;
            gap: 20px; /* Space between buttons */
            justify-content: center;
            text-align: center ;
            align-items: center;
        }

        /* Button Base Style */
        .cta-button {
            padding: 12px 30px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Primary Button: Get Started Free */
        .cta-primary {
            /* Gradient background for the blue button */
            background: linear-gradient(90deg, #4d7cff 0%, #8496ff 100%);
            color: #ffffff;
            border: none;
            box-shadow: 0 4px 15px rgba(77, 124, 255, 0.5);
        }

        .cta-primary:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(77, 124, 255, 0.7);
        }

        .cta-primary::after {
            content: '→'; /* Arrow icon */
            margin-left: 10px;
            font-size: 1.2rem;
        }

        /* Secondary Button: View Our Work */
        .cta-secondary {
            background-color: transparent;
            color: #ffffff;
            border: 2px solid #5d759a;
            box-shadow: none;
        }

        .cta-secondary:hover {
            background-color: rgba(93, 117, 154, 0.1);
            border-color: #8496ff;
            transform: translateY(-2px);
        }

        /* Media Query for smaller screens */
        @media (max-width: 768px) {
            .main-heading {
                font-size: 3rem;
            }

            .sub-heading {
                font-size: 1.2rem;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .cta-button {
                width: 80%;
                max-width: 300px;
            }
        }






        .stats-section {
        padding: 60px 20px;
        font-family: 'Poppins', sans-serif;
        color: #ffffff;
    }

    .stats-container {
        display: flex;
        justify-content: space-around; /* Distribute items evenly */
        align-items: flex-start;
        margin: 0 auto;
        flex-wrap: wrap; /* Allow wrapping on small screens */
    }

    .stat-item {
        text-align: center;
        margin: 20px;
        flex: 1; /* Distribute space relatively evenly */
        min-width: 150px; /* Ensure items don't get too small */
    }

    .stat-number-container {
        display: flex;
        justify-content: center;
        align-items: center;
        line-height: 1;
        margin-bottom: 5px;
    }

    .stat-number {
        font-size: 3.5rem; /* Large font size for the numbers */
        font-weight: 700;
        color: #4d7cff; /* Bright blue color */
        /* Optional: Add a subtle glow/shadow effect */
        text-shadow: 0 0 10px rgba(77, 124, 255, 0.5);
    }

    .stat-suffix {
        font-size: 3.5rem;
        font-weight: 700;
        color: #4d7cff;
        margin-left: 5px; /* Space between number and suffix (+ or %) */
    }

    .stat-label {
        font-size: 1rem;
        font-weight: 400;
        color: #c0c0ff; /* Lighter color for the labels */
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Media Query for smaller screens */
    @media (max-width: 768px) {
        .stats-container {
            justify-content: center;
        }
        .stat-item {
            min-width: 40%;
            margin: 15px 10px;
        }
        .stat-number, .stat-suffix {
            font-size: 2.5rem;
        }
        .stat-label {
            font-size: 0.9rem;
        }
    }





/* Overall body styling for the dark background and text color */

.why-choose-us-section {
            text-align: center;
            max-width: 900px; /* Limit width of content */
            margin: 0 auto; /* Center the section horizontally */
            padding: 40px 20px; /* Padding inside the section */
        }

        /* --- Main Heading Styling --- */
        .why-choose-us-section h2 {
            font-size: 3.5rem; /* Large font size for the heading */
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .why-choose-us-section .heading-white {
            color: #ffffff; /* White part of the heading */
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

        .why-choose-us-section .heading-purple {
            color: #AF4CFF; /* Purple part of the heading */
            text-shadow: 0 0 15px rgba(175, 76, 255, 0.6);
        }

        /* --- Sub-text/Description Styling --- */
        .why-choose-us-section p {
            font-size: 1.2rem;
            font-weight: 400;
            color: #c0c0ff; /* Lighter blue/purple text color */
            max-width: 600px;
            margin: 0 auto; /* Center the paragraph */
            line-height: 1.6;
        }

        /* --- Responsive Adjustments --- */
        @media (max-width: 768px) {
            .why-choose-us-section h2 {
                font-size: 2.5rem;
            }
            .why-choose-us-section p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .why-choose-us-section h2 {
                font-size: 2rem;
            }
        }


/* Section specific styling */
.features-section {
    padding: 60px 0; /* Vertical padding */
    flex-grow: 1; /* Allows the section to fill available space */
}

/* Feature Card Styling */
.feature-card {
    background-color: #2c214d; /* Darker background for the cards */
    border-radius: 15px; /* Rounded corners */
    padding: 30px;
    
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); /* Subtle shadow */
    height: 100%; /* Ensure cards in a row have equal height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to the top */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
    border: 1px solid rgba(255, 255, 255, 0.08); /* Subtle border */
}


.feature-card:hover {
    transform: translateY(-5px); /* Lift card slightly on hover */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6); /* Enhanced shadow on hover */
}

.feature-card:hover h3{
    color: rgb(212, 163, 212);
}


.icon-wrapper {
    width: 40px; 
    height: 40px; 
    margin: 0px 0px 20px 0px; 
    background: linear-gradient(60deg, purple, rgb(148, 34, 53)); 
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px; /* Icon size */
    color: #fff; /* White icon color */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Icon shadow */
}

/* Headings within cards */
.feature-card h3 {
    color: #ffffff; /* White title text */
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Paragraphs within cards */
.feature-card p {
    color: #cccccc; /* Lighter gray for description */
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767.98px) {
    .feature-card {
        padding: 25px;
    }
    .feature-card h3 {
        font-size: 1.4rem;
    }
    .feature-card p {
        font-size: 0.9rem;
    }
    .icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 12px;
        margin-bottom: 15px;
}
}








    .services-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .services-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 10px;
            /* Gradient text effect for the blue/white color */
            background: linear-gradient(90deg, #4d7cff 0%, #ffffff 50%, #8496ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 10px rgba(77, 124, 255, 0.3);
        }

        .services-header p {
            font-size: 1.1rem;
            color: #c0c0ff;
            max-width: 700px;
            margin: 0 auto;
        }

        @media (max-width:768px) {
            .services-header h2{
                font-size: 28px !important;
            }
            .services-header p{
                padding: 0px 20px;
            }
        }
        /* --- Services Card Container --- */
        .services-container {
            display: flex;
            /* justify-content: center; */
            gap: 30px; /* Space between cards */
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap; /* Allow cards to wrap on smaller screens */
        }

        /* --- Individual Card Styling --- */
        .service-card {
            flex: 1;
            min-width: 300px; /* Minimum width for the card */
            max-width: 380px;
            padding: 30px;
            border-radius: 12px;
            /* Dark background with a slight transparent blue tint */
            background-color: rgba(18, 20, 52, 0.8);
            border: 1px solid rgba(77, 124, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(77, 124, 255, 0.2);
        }

        /* --- Icon Styling --- */
        .service-icon {
            font-size: 2rem;
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 8px;
            margin-bottom: 20px;
            color: #4d7cff; /* Blue icon color */
            background-color: rgba(77, 124, 255, 0.1);
            border: 1px solid rgba(77, 124, 255, 0.3);
            /* Icon specific styles for better appearance */
            box-shadow: 0 0 10px rgba(77, 124, 255, 0.3);
        }

        /* --- Content Styling --- */
        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 15px;
        }

        .service-card p {
            font-size: 0.95rem;
            color: #e0e0e0;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        /* --- Tags/Pills Styling --- */
        .service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .tag-pill {
            font-size: 0.8rem;
            color: #c0c0ff;
            background-color: rgba(77, 124, 255, 0.1);
            border: 1px solid rgba(77, 124, 255, 0.3);
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: 400;
        }

        /* --- Learn More Link --- */
        .learn-more {
            display: inline-flex;
            align-items: center;
            font-size: 1rem;
            font-weight: 600;
            color: #4d7cff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .learn-more:hover {
            color: #8496ff;
        }

        .learn-more::after {
            content: '→'; /* Arrow icon */
            margin-left: 8px;
            font-size: 1.2rem;
        }

        /* --- Responsive Adjustments --- */
        @media (max-width: 1024px) {
            .services-container {
                gap: 20px;
            }
            .service-card {
                max-width: 45%;
                min-width: 40%;
            }
        }

        @media (max-width: 768px) {
            .services-header h2 {
                font-size: 2rem;
            }
            .services-container {
                flex-direction: column;
                align-items: center;
                gap: 25px;
            }
            .service-card {
                max-width: 90%;
                min-width: unset;
            }
        }

       
        /* --- Section Header Styling --- */
        .industries-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .industries-header h2 {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 10px;
            margin-top: 100px;
        }

        @media (max-width:768px) {
            .industries-header h2{
                font-size: 28px !important;
            }
            .industries-header p{
                padding: 0px 20px;
            }
        }

        .industries-header .heading-green {
            color: #4c63af; /* Bright green color for "Industries" */
            text-shadow: 0 0 10px rgba(78, 76, 175, 0.5);
        }

        .industries-header .heading-white {
            color: #ffffff; /* White color for "We Serve" */
        }

        .industries-header p {
            font-size: 1.1rem;
            color: #c0c0ff;
            max-width: 700px;
            margin: 0 auto;
        }

        /* --- Industry Cards Container --- */
        .industries-container {
            display: flex;
            justify-content: center;
            gap: 25px; /* Space between cards */
            max-width: 1200px;
            margin: 0 auto 50px auto; /* Add margin below the grid */
            flex-wrap: wrap; /* Allow wrapping on smaller screens */
        }

        /* --- Individual Card/Box Styling --- */
        .industry-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            width: 150px; /* Fixed width for the boxes */
            height: 150px; /* Fixed height for the boxes */
            padding: 10px;
            border-radius: 12px;
            /* Dark background for the boxes */
            background-color: rgba(18, 20, 52, 0.8);
            border: 1px solid rgba(77, 124, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            flex-shrink: 0; /* Prevents shrinking on smaller screens */
        }

        .industry-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }

        /* --- Icon Styling --- */
        .industry-icon {
            font-size: 1.5rem;
            width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 10px;
            margin-bottom: 10px;
        }

        /* Specific colors for icons */
        .icon-realestate { background-color: rgba(77, 124, 255, 0.1); color: #4d7cff; } /* Blue */
        .icon-education { background-color: rgba(255, 124, 255, 0.1); color: #ff7cff; } /* Pink/Magenta */
        .icon-healthcare { background-color: rgba(255, 99, 71, 0.1); color: #ff6347; } /* Coral/Red */
        .icon-ecommerce { background-color: rgba(76, 175, 80, 0.1); color: #4CAF50; } /* Green */
        .icon-it { background-color: rgba(132, 150, 255, 0.1); color: #8496ff; } /* Light Blue */
        .icon-travel { background-color: rgba(175, 76, 255, 0.1); color: #AF4CFF; } /* Purple */


        /* --- Label Styling --- */
        .industry-box p {
            font-size: 0.9rem;
            font-weight: 600;
            color: #e0e0e0;
        }

        /* --- Footer Text Styling --- */
        .industries-footer-text {
            text-align: center;
            font-size: 1rem;
            font-weight: 300;
            color: #c0c0ff;
            padding-top: 20px;
        }

        /* --- Responsive Adjustments --- */
        @media (max-width: 992px) {
            .industries-container {
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .industries-header h2 {
                font-size: 2.5rem;
            }
            .industry-box {
                width: 130px;
                height: 130px;
            }
            .industry-icon {
                width: 50px;
                height: 50px;
            }
            .industries-container {
                /* Allow 3 columns to fit easily on tablets */
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .industries-container {
                /* Allow 2 columns on small phones */
                gap: 15px;
            }
            .industry-box {
                width: 45%; /* Use percentage width */
                height: 120px;
            }
            .industry-icon {
                font-size: 1.4rem;
                width: 45px;
                height: 45px;
            }
            .industry-box p {
                font-size: 0.85rem;
            }
        }




        :root {
            --dark-blue: #0f172a; /* Main background color from image analysis */
            --card-dark: #1e293b; /* Card background color from image analysis */
            --popular-border: #00bcd4; /* Cyan/Blue for popular card highlight */
            --text-light: #e2e8f0; /* Light text color */
            --price-color: #00bcd4; /* Price highlight color */
        }

      

        /* Header Styling */
        
        
        /* Pricing Card Styling */
        .pricing-card {
            background-color: var(--card-dark);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 0.5rem;
            padding: 30px;
            height: 100%; /* Ensure all cards are same height */
            transition: all 0.3s ease-in-out;
            position: relative; /* For the badge */
            display: flex;
            flex-direction: column;
        }
        
        /* Most Popular Card - Distinctive Styling */
        .pricing-card.popular {
            border-color: var(--popular-border);
            box-shadow: 0 0 20px rgba(0, 188, 212, 0.4);
        }
        
        /* Most Popular Badge */
        .popular-badge {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: var(--popular-border);
            color: var(--dark-blue);
            font-weight: 700;
            padding: 5px 15px;
            border-radius: 50rem;
            font-size: 0.75rem;
            letter-spacing: 0.05em;
        }

        /* Price Text Styling */
        .price-text {
            color: var(--price-color);
            font-size: 2.5rem;
            font-weight: 800;
        }
        /* Override price color for "Quote-based" */
        .price-text.white {
            color: var(--text-light) !important;
        }

        /* Feature List Styling */
        .feature-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: auto; /* Push buttons to the bottom */
        }
        
        .feature-list li {
            padding: 8px 0;
            font-size: 1rem;
            color: var(--text-light);
        }

        /* Icon Styling */
        .icon {
            margin-right: 10px;
            font-weight: 900;
            width: 1.25rem; /* Standardized width for alignment */
            display: inline-block;
            text-align: center;
        }
        .check-icon {
            color: #48bb78; /* Green checkmark */
        }
        .cross-icon {
            color: #f56565; /* Red cross mark */
        }

        /* Button Styling - Gradient Background */
        .btn-custom {
            background-image: linear-gradient(to right, #005ee2, #9100f1);
            border: none;
            color: white;
            padding: 10px 20px;
            font-weight: 600;
            border-radius: 0.25rem;
            transition: opacity 0.3s ease;
        }
        
        .btn-custom:hover {
            opacity: 0.9;
            color: white; /* Prevent link color change on hover */
        }

        /* Outline Button Styling */
        .btn-outline-custom {
            border: 2px solid var(--popular-border);
            color: var(--popular-border);
            padding: 10px 20px;
            font-weight: 600;
            border-radius: 0.25rem;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .btn-outline-custom:hover {
            background-color: var(--popular-border);
            color: var(--dark-blue);
        }
        
        /* Footer text under the button */
        .card-footer-text {
            font-size: 0.8rem;
            margin-top: 10px;
            color: #94a3b8;
        }




        .cta-section {
            text-align: center;
            max-width: 900px; /* Limit width of content */
            margin: 0 auto; /* Center the section horizontally */
            padding: 50px 20px; /* Padding inside the section */
        }

        /* --- Main Heading Styling --- */
        .cta-section h2 {
            font-size: 3.5rem; /* Large font size for the heading */
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .cta-section .heading-white {
            color: #ffffff; /* White part of the heading */
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

        .cta-section .heading-gradient {
            /* Gradient text color for "Digital Success Story" */
            background: linear-gradient(90deg, #00C6FF 0%, #AF4CFF 100%); /* Blue to Purple */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 15px rgba(0, 198, 255, 0.6); /* Subtle glow */
        }

        /* --- Sub-text/Description Styling --- */
        .cta-section p {
            font-size: 1.1rem;
            font-weight: 400;
            color: #c0c0ff; /* Lighter blue/purple text color */
            max-width: 700px;
            margin: 0 auto; /* Center the paragraph */
            line-height: 1.6;
        }

        /* --- Responsive Adjustments --- */
        @media (max-width: 768px) {
            .cta-section h2 {
                font-size: 2.5rem;
            }
            .cta-section p {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .cta-section h2 {
                font-size: 2rem;
            }
        }





        .contact-section {
            display: flex;
            flex-wrap: wrap; /* Allow wrapping on smaller screens */
            gap: 30px; /* Space between the main columns */
            max-width: 1200px;
            margin: 0 auto;
            justify-content: center; /* Center items when they wrap */
            align-items: flex-start; /* Align items to the top */
        }

        /* --- Left Column: Contact Info & Free Consultation --- */
        .contact-left {
            flex: 1; /* Take available space */
            min-width: 550px; /* Minimum width for the column */
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        /* --- Get In Touch Card --- */
        .contact-info-card {
            background-color: rgba(18, 20, 52, 0.8);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .contact-info-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: #ffffff;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            color: #e0e0e0;
        }

        .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact-item .icon {
            font-size: 1.3rem;
            width: 45px;
            height: 45px;
            background-color: rgba(77, 124, 255, 0.1); /* Light blue transparent background */
            color: #4d7cff; /* Blue icon color */
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
        }

        .contact-item .text strong {
            display: block;
            font-size: 1rem;
            font-weight: 600;
            color: #c0c0ff;
            margin-bottom: 2px;
        }

        .contact-item .text span {
            font-size: 0.95rem;
            font-weight: 300;
            color: #a0a0ff;
        }

        /* --- Free Consultation Card --- */
        .consultation-card {
            background: linear-gradient(135deg, #4d7cff 0%, #AF4CFF 100%); /* Blue to Purple gradient */
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            color: #ffffff;
        }

        .consultation-card .icon {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #ffffff; /* White icon */
        }

        .consultation-card h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .consultation-card p {
            font-size: 0.95rem;
            font-weight: 300;
            line-height: 1.6;
            color: #e0e0e0;
        }

        /* --- Right Column: Contact Form --- */
        .contact-form-card {
            flex: 2; /* Take more space */
            min-width: 450px; /* Minimum width for the form */
            background-color: rgba(18, 20, 52, 0.8);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: #c0c0ff;
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #5d759a; /* Light blue/grey border */
            background-color: #24264f; /* Darker input background */
            color: #ffffff;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #8899bb; /* Placeholder text color */
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #4d7cff; /* Blue border on focus */
            box-shadow: 0 0 0 3px rgba(77, 124, 255, 0.3); /* Blue glow on focus */
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical; /* Allow vertical resizing */
        }

        /* --- Send Message Button --- */
        .send-button {
            width: 100%;
            padding: 15px 25px;
            border-radius: 8px;
            border: none;
            /* Gradient background for the button */
            background: linear-gradient(90deg, #00C6FF 0%, #4d7cff 100%); /* Blue to lighter blue */
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 198, 255, 0.4);
        }

        .send-button:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 198, 255, 0.6);
        }

        /* --- Responsive Adjustments --- */
        @media (max-width: 992px) {
            .contact-left,
            .contact-form-card {
                min-width: unset; /* Remove min-width to allow more flexibility */
                flex: 1 1 100%; /* Take full width on smaller screens */
            }
            .contact-section {
                flex-direction: column; /* Stack columns vertically */
                align-items: center;
            }
            .contact-form-card {
                width: 100%; /* Ensure form takes full width */
            }
        }

        @media (max-width: 576px) {
            .contact-info-card,
            .consultation-card,
            .contact-form-card {
                padding: 25px;
            }
            .contact-info-card h3 {
                font-size: 1.5rem;
            }
            .consultation-card h3 {
                font-size: 1.4rem;
            }
            .form-group label {
                font-size: 0.85rem;
            }
            .form-group input,
            .form-group textarea {
                padding: 10px 12px;
                font-size: 0.9rem;
            }
            .send-button {
                padding: 12px 20px;
                font-size: 1rem;
            }
        }



        .main-footer {
        /* Dark background color similar to the image and other sections */
        background-color: #0d123e; 
        padding: 100px 20px;
        font-family: 'Poppins', sans-serif;
        text-align: center;
        width: 100%;
        margin-top: 60px;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* --- Copyright Text --- */
    .footer-copyright {
        font-size: 0.9rem;
        font-weight: 400;
        color: #e0e0e0;
        margin-bottom: 15px;
    }

    /* --- Links/Keywords Container --- */
    .footer-links {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap; /* Allow wrapping of links */
        gap: 8px 15px; /* Vertical and horizontal gap */
    }

    .footer-link {
        font-size: 0.85rem;
        font-weight: 300;
        color: #a0a0ff; /* Light blue/purple color */
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-link:hover {
        color: #ffffff; /* White on hover */
    }

    /* --- Separator Dot --- */
    .separator {
        color: #5d759a; /* Darker color for the dot */
        font-size: 0.85rem;
        font-weight: 600;
    }

    /* Hide separator at the end of a line break on small screens */
    @media (max-width: 600px) {
        .footer-links {
            flex-direction: column;
            gap: 5px;
        }
        .separator {
            display: none;
        }
    }