* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html,body{
    overflow-x: hidden;
}
body {
    background-color: aliceblue;
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
}

/* --- Container 1: Header/Nav --- */
.container-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 0;
    min-height: 80vh;
}

.logo-container {
    width: 100%;
    text-align: center;
    position: fixed;
    background-color: rgb(255, 255, 255);
    top: 0; /* Top se shuru karein */
    height: 80px;
    z-index: 1000;
}

.logo {
    height: 120px;
    width: 120px;
    margin-top: -20px;
}

.sidebar-text h5 {
    position: fixed;
    left: 5.5rem;
    top: 52%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: medium;
    letter-spacing: -1px;
    word-spacing: 10px;
    background: linear-gradient(to bottom, #7db1f1, #00E3FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bolder !important;
    -webkit-text-fill-color: transparent;
    margin-left: -6rem;
    z-index: 1000;
}

.right-sidebar {
    position: fixed;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    z-index: 1000;
}

.line {
    height: 3px;
    background-color: gray;
    border-radius: 5px;
    width: 30px;
    transition: all 0.3s ease-in-out;
}

.line-active {
    width: 45px;
    background-color: rgb(12, 167, 250);
}

.header {
    margin-top: 4rem;
    background-color: rgb(242, 242, 247);
    margin-inline: 5rem;
    height: 78vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    margin-bottom: 2rem;
    width: calc(100% - 10rem); /* Responsive width */
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: fit-content;
    display: flex;
    justify-content: center;
}

.navbar ul li {
    display: inline-block;
    margin-inline: 4rem;
    padding-block: 1rem;
}

.navbar a {
    text-decoration: none;
    font-weight: bolder;
    font-size: x-large;
    color: rgb(61, 61, 61);
}

.navbar a:hover {
    background: linear-gradient(to bottom, #7db1f1, #00E3FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.header-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0% auto;
    align-items: center;
    justify-content: center;
    padding-bottom: 5rem;
}

.descr {
    letter-spacing: normal;
    font-weight: bold;
    color: rgb(61, 61, 61);
    text-align: center;
}

.header-content h1 {
    background: linear-gradient(to bottom, #7db1f1, #00E3FF);
   
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-size: 10rem !important;
    font-weight:900;
}


.container-2,
.container-3,
.container-4 {
    display: flex;
    flex-wrap: wrap; /* Important for wrapping content on smaller screens */
    align-items: center;
    justify-content: center;
    margin-inline: 5rem;
    padding-block: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 4rem;
    background-color: rgb(242, 242, 247);
}

.container-2-left,
.container-3-right,
.container-4-left {
    width: 50%;
    color: rgb(61, 61, 61);
    padding-left: 5rem;
}

.container-3-left {
    width: 50%;
    color: rgb(61, 61, 61);
    text-align: right;
}

.container-2-right,
.container-4-right {
    width: 50%;
}
.container-2-left a:hover,.container-3-right a:hover,.container-4-left a:hover{
    font-size: larger;
    color:#00E3FF !important;
    transition: 0.2s;
}

.container-2-left h1,
.container-3-right h1,
.container-4-left h1 {
    background: linear-gradient(to bottom, #7db1f1, #00E3FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: bolder;
    font-size: 4rem;
}

.container-2-right img,
.container-3-left img,
.container-4-right img {
    max-width: 90%; /* Image ko responsive banaya */
    height: auto;
    width: 400px; /* Original width set */
}

.container-3-left img {
    margin-left: 5rem; /* Original margin maintain */
}


/* --- Button Style --- */
.container-4 .button {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
}

.container-4 button{
    background-color:gray !important;
    color:#ffffff !important;
    transition: all 0.4s ease;
    border: none;
}
.container-4 button:hover{
    background-color: #37dcf5 !important;
    border: 1px solid #0198ac !important;
    box-shadow: 0 15px 30px rgba(0, 255, 153, 0.2) !important;
    transform: translateY(-10px);
}
.container-4 button a{
    text-decoration: none;
    color:#ffffff;
}

/* --- Footer --- */
.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgb(61, 61, 61) !important;
    z-index: 999;
    background-color: rgb(255, 255, 255) !important;
    height: 50px;
}
    .footer-left i, .footer-right i {
            margin: 0 10px;
            cursor: pointer;
            transition: color 0.3s ease;
            
        }







/* index2.html content */




.html-2-container-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: 5rem;
    padding-block: 3rem;
    margin-top: 2rem;
    background-color: rgb(242, 242, 247);
}

.header-left,
.header-right {
    width: 50%;
    color: rgb(61, 61, 61);
    padding-left: 5rem;
}

.header-left h1 {
    background: linear-gradient(to bottom, #7db1f1, #00E3FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: bolder;
    font-size: 4rem;
}

.header-left a:hover {
    background: linear-gradient(to bottom, #7db1f1, #00E3FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.header-left i:hover {
    font-size: large;

    transition: font-size 0.3s ease-in-out;

}

.html-2-container-2,
.html-2-container-3,
.html-2-container-4,
.html-2-container-5,
.html-2-container-6,
.html-2-container-7 {
    margin-inline: 5rem;
    color: rgb(61, 61, 61);
    padding-block: 3rem;
    margin-top: 2rem;
    padding-left: 4rem;
    background-color: rgb(242, 242, 247);
}

.html-2-container-3,
.html-2-container-4,
.html-2-container-5,
.html-2-container-6,
.html-2-container-7 {
    padding-right: 4rem;
}

.html-2-container-7 {
    margin-bottom: 8rem;
}


/* index3.html content */
.html-3-container-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: 5rem;
    padding-block: 3rem;

    margin-top: 2rem;
    background-color: rgb(242, 242, 247);
}

.html-3-header-left,
.html-3-header-right {
    width: 50%;
    color: rgb(61, 61, 61);
    padding-left: 5rem;
}

.html-3-header-left h1 {
    background: linear-gradient(to bottom, #7db1f1, #00E3FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: bolder;
    font-size: 4rem;
}

.html-3-header-left a:hover {
    background: linear-gradient(to bottom, #7db1f1, #00E3FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.html-3-header-left i:hover {
    font-size: large;

    transition: font-size 0.3s ease-in-out;

}

.html-2-container-2 ul li {
    list-style: none;
    margin-left: -2rem;

}

.html-3-container-2 {
    padding-right: 4rem;
}

.html-3-header-right h1 {
    background: linear-gradient(to bottom, #7db1f1, #00E3FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: bolder;
    font-size: 4rem;
}



.html-3-container-2,
.html-3-container-3 {
    margin-inline: 5rem;
    color: rgb(61, 61, 61);
    padding-block: 3rem;
    margin-top: 2rem;
    padding-left: 4rem;
    background-color: rgb(242, 242, 247);
}




/* index4.html content */

.html-4-container-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: 5rem;
    padding-block: 3rem;
    margin-top: 2rem;
    background-color: rgb(242, 242, 247);
}

.html-4-header-left,
.html-4-header-right {
    width: 50%;
    color: rgb(61, 61, 61);
    padding-left: 5rem;
}

.html-4-header-left h1 {
    background: linear-gradient(to bottom, #7db1f1, #00E3FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: bolder;
    font-size: 4rem;
}

.html-4-header-left a:hover {
    background: linear-gradient(to bottom, #7db1f1, #00E3FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.html-4-header-left i:hover {
    font-size: large;

    transition: font-size 0.3s ease-in-out;

}

.html-4-container-2,
.html-4-container-3,
.html-4-container-4 {
    margin-inline: 5rem;
    color: rgb(61, 61, 61);
    padding-block: 3rem;
    margin-top: 2rem;
    padding-left: 4rem;
    background-color: rgb(242, 242, 247);
}


/* index6.html content */
.html-6-container-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: 5rem;
    padding-block: 3rem;
    margin-top: 2rem;
    background-color: rgb(242, 242, 247);
}

.html-6-header-left,
.header-right {
    width: 50%;
    color: rgb(61, 61, 61);
    padding-left: 5rem;
}

.html-6-header-left h1 {
    background: linear-gradient(to bottom, #7db1f1, #00E3FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: bolder;
    font-size: 4rem;
}

.html-6-header-left a:hover {
    background: linear-gradient(to bottom, #7db1f1, #00E3FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.html-6-header-left i:hover {
    font-size: large;

    transition: font-size 0.3s ease-in-out;

}

.section-title {
    text-align: center;
    font-size: 2.5em;

    margin-bottom: 60px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;

    margin: 10px auto 0;
}

.service-card-grid {

    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: none;
    padding: 30px;
    border-radius: 20px;
    
   
    height: 100%;
    /* Ensures cards in a row are the same height */
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 10px #555;
}

.service-icon {

    margin-bottom: 15px;
}

.service-icon:hover,
.service-card h3:hover {
   
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

.service-icon:hover {
    transform: scale(1.2);
}

.service-card h3 {
    font-size: 1.5em;

    margin-top: 10px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 1em;

    margin-bottom: 25px;
}

.html-6-icon h4{
background: linear-gradient(to bottom, #7db1f1, #00E3FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.html-6-icon i:hover {
  
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

.html-6-icon i:hover {
    transform: scale(1.2);
}

.html-6-container-2,
.html-6-container-3 {
    margin-inline: 5rem;
    color: rgb(61, 61, 61);
    padding-block: 3rem;
    margin-top: 2rem;
    padding-left: 4rem;
    background-color: rgb(242, 242, 247);
}

.html-6-container-4 {
    margin-inline: 5rem;
    color: rgb(61, 61, 61);
    margin-top: 2rem;
    padding-left: 4rem;
    background-color: rgb(242, 242, 247);
}



/* index5.html content */
.html-5-container-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: 5rem;
    padding-block: 2rem;
    margin-top: 2.5rem;
    background-color: rgb(242, 242, 247);
}

.html-5-container-1-left,
.html-5-container-1-right {
    width: 50%;
    color: rgb(61, 61, 61);
    padding-left: 5rem;
}

.html-5-container-1-left h1 {
    background: linear-gradient(to bottom, #7db1f1, #00E3FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: bolder;
    font-size: 4rem;
}

.html-5-container-1-left a:hover {
    background: linear-gradient(to bottom, #7db1f1, #00E3FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.html-5-container-1-left i:hover {
    font-size: large;

    transition: font-size 0.3s ease-in-out;

}

.html-5-container-2,
.html-5-container-3 {
    margin-inline: 5rem;
    color: rgb(61, 61, 61);
    padding-block: 3rem;
    margin-top: 2rem;
    padding-left: 4rem;
    background-color: rgb(242, 242, 247);
}

.html-5-container-2 {
    padding-right: 4rem;
}

.html-5-container-2-icon {
    color: rgb(61, 61, 61);
}

.html-5-container-2-icon:hover {
  
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out !important;
}

.html-5-container-2-icon:hover {
    transform: scale(1.2);
}
.hover-scale:hover{
 transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(99, 100, 100, 0.2);
}


.text-ronix-cyan {
    background: linear-gradient(to bottom, #7db1f1, #00E3FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.html-5-container-2 h5 {
    background: linear-gradient(to bottom, #7db1f1, #00E3FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 2rem;
    height: 2rem;
    background-color: #00E3FF;
    border: 4px solid black;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.6);
    z-index: 20;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 2px;
    background-color: #495057;
    /* Gray 700 equivalent */
}
/* index7.html content */
/* Color Variables */

.html-7-container-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: 5rem;
    padding-block: 2rem;
    margin-top: 2.5rem;
    background-color: rgb(242, 242, 247);
}

.html-7-container-1-left,
.html-7-container-1-right {
    width: 50%;
    color: rgb(61, 61, 61);
    padding-left: 5rem;
}

.html-7-container-1-left h1 {
    background: linear-gradient(to bottom, #7db1f1, #00E3FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: bolder;
    font-size: 4rem;
}

.html-7-container-1-left a:hover {
    background: linear-gradient(to bottom, #7db1f1, #00E3FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.html-7-container-1-left i:hover {
    font-size: large;

    transition: font-size 0.3s ease-in-out;

}


.html-7-container-2,
.html-7-container-3,.html-7-container-3,.html-7-container-4 {
    margin-inline: 5rem;
    color: rgb(61, 61, 61);
    margin-top: 2rem;
    padding-left: 4rem;
    background-color: rgb(242, 242, 247);
}
.html-7-container-4{
    margin-bottom: 4rem;
}

.html-7-container-3{
   padding-inline: 1rem;
}


 h1, h2, h3, h5 {
     background: linear-gradient(to bottom, #7db1f1, #00E3FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.custom-card {
    background-color: var(--ronix-dark);
    border: 1px solid rgba(0, 255, 153, 0.2); /* Subtle accent border */
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.custom-card i{
    color:rgb(61, 61, 61);
}
.custom-card i:hover {
    
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}
.custom-card i:hover{
    transform: scale(1.1);
}

.custom-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 30px #555;
}

.html-7-button,.custom-btn-glow-large{
    background-color:gray !important;
    color:#ffffff !important;
       transition: all 0.4s ease;
}
.html-7-button:hover,.custom-btn-glow-large:hover{
    background-color: #22dbf8 !important;
    border: 1px solid #0198ac !important;
 box-shadow: 0 15px 30px #555 !important;
transform: translateY(-10px);
}
/* Custom Styles for the Process Section */



/* Styling for the individual step container */
.process-step {
    padding: 20px;
    border-radius: 8px;
}

/* Styling for the large number (01, 02, etc.) */
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Makes it a circle */
    background-color:#555; /* Primary blue color */
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Styling for the arrow/connector section */
.process-connector {
    color: #ced4da; /* Light gray for the arrows */
}




/* index9.html content */


.html-9-container-2
{
    display: flex;
    flex-direction: column; /* Content stacks vertically */
    justify-content: center; /* Vertically center content */
    align-items: flex-start; /* Align content to the left */
    text-align: left; /* Ensure text alignment is left */
     margin-inline: 5rem;
    color: rgb(61, 61, 61);
    padding-left: 4rem;
    padding-block: 4rem;
    background-color: rgb(242, 242, 247);

}
.html-9-tagline
{
    font-size: 0.9em;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.html-9-headline
{
    font-size: 3.5em; /* Large headline */
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0; /* Remove default margins and add bottom margin */
    line-height: 1.2;
}
.html-9-description
{
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px; /* Limit width for readability */
}
.html-9-button-1,.html-9-button-2
{
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.html-9-button-1{
   background-color: #47dff3;
    color: #ffffff;
    border: 1px solid #007bff;
}
.html-9-button-1:hover
{
    background-color: #38b6f6; /* Darker blue on hover */
    border-color: #0056b3;
}
.html-9-button-2
{
    background-color: transparent;
    color: #32c3f4; /* Blue text color for secondary button */
    border: 1px solid #3abbf2; /* Blue border */
}
.html-9-container-3{
 margin-inline: 5rem;
    color: rgb(61, 61, 61);
    margin-top: 2rem;
    padding-left: 4rem;
    background-color: rgb(242, 242, 247);
    display: flex;
    flex-direction: column;
    padding-block:3rem;
    text-align: center;
}
.html-9-container-4 {
     margin-inline: 5rem;
    padding-block: 2rem;
    margin-top: 2.5rem;
    background-color: rgb(242, 242, 247);
padding-inline: 2rem;
margin-bottom: 4rem;
}

/* Container and Layout Styling */
.html-9-container-4 {
    margin-inline: 5rem;
    padding-block: 2rem;
    margin-top: 2.5rem;
    background-color: rgb(242, 242, 247);
    padding-inline: 2rem;
    margin-bottom: 4rem;
}

.html-9-container-flex {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center; /* Vertically align image and grid */
}

/* Image Column Styling */
.html-9-container-4-image {
    flex: 1;
    max-width: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Feature Grid Styling */
.html-9-container-4-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 50%;
}

/* Feature Card Base Styling (Added transition for all cards) */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transition for smooth hover effect */
    cursor: default; /* Change cursor to indicate interactiveness */
}

/* Large Card Styling (Added padding for spacing) */
.feature-card.large-card {
    background-color: #fbfdff; /* Light blue background */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px; /* Added padding here */
}

/* Large Card Hover Effect */
.feature-card.large-card:hover {
    transform: translateY(-5px); /* Lift card up slightly */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Enhance shadow */
}

.large-card .card-title {
    font-size: 1.15em;
    font-weight: 700;
    color: #30f4f8;
    margin-top: 0;
    margin-bottom: 5px;
}

.large-card .card-detail {
    font-size: 0.95em;
    color: #555;
    margin: 0;
}

/* Small Card Row Styling */
.small-cards-row {
    display: flex;
    gap: 20px;
}

/* Small Card Styling */
.feature-card.small-card {
    flex: 1;
    padding: 15px;
    border-radius: 8px;
    background-color: #f8f8f8; /* Very light background, almost white */
    border: 1px solid #dee2e6; /* Subtle border */
}

/* Small Card Hover Effect */
.feature-card.small-card:hover {
    transform: translateY(-3px); /* Lift card up slightly */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08); /* Enhance shadow */
}

.small-card .card-title-small {
    font-size: 1em;
    font-weight: 600;
    color: #38c5f4;
    margin: 0;
}

.small-card .card-detail-small {
    font-size: 0.85em;
    color: #6c757d;
    margin: 5px 0 0 0;
}


.html-9-container-5{
     margin-inline: 5rem;
    color: rgb(61, 61, 61);
    margin-top: 2rem;
padding-top: 2rem;
padding-inline: 1rem;
    background-color: rgb(242, 242, 247);
    margin-bottom: 5rem;
}



.portfolio-section {
    padding: 40px 20px;
    text-align: center;
}


.portfolio-grid {
    display: flex; /* Enable Flexbox */
    flex-wrap: wrap; /* Allow items to wrap to the next line (creating the second row) */
    justify-content: space-between; /* Distribute items evenly */
    gap: 20px; /* Space between rows (for both row and column gaps) */
    max-width: 1200px;
    margin: 0 auto;
}


.portfolio-item {
    /* Calculated width for 3 items with 20px total space in between */
    /* calc((100% - (2 * 20px)) / 3) ensures exactly 3 items fit per line */
    flex: 0 0 calc(33.333% - 13.333px); /* Defines item width */ 
    
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    margin-bottom: 20px; /* Explicit margin to ensure gap between rows */
}


.portfolio-item img {
    width: 100%;
    height: 100%;
    display: block;
    /* Apply a smooth transition to the image for transform and opacity */
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out; 
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    opacity: 0; 
    transition: opacity 0.4s ease-in-out;
}


.portfolio-item:hover img {

    transform: scale(1.05); 
    opacity: 0.8;
}

.portfolio-item:hover .overlay {

    opacity: 1; 
}




.html-9-container-6 {
        margin-inline: 5rem;
    padding-block: 2rem;
    margin-top: 2.5rem;
    background-color: rgb(242, 242, 247);
padding-inline: 2rem;
margin-bottom: 4rem;
}

.technologies-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .tagline {
    font-size: 0.9em;
    font-weight: 600;
color:#555;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.section-header h2 {
    font-size: 2.8em;
    font-weight: 700;
    color: #343a40; /* Dark text */
    margin: 0;
}


.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* 4 columns for large screens */
    gap: 25px;
}

.tech-card {
    background-color: #ffffff; /* White card background */
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Soft shadow */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px); /* Lift on hover */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
}

.tech-icon {
    font-size: 3.5em; /* Large icon size */
 color:#555;
    margin-bottom: 15px;
}
.tech-icon:hover{
     background: linear-gradient(to bottom, #7db1f1, #00E3FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.tech-name {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    margin: 0;
}
.main-navbar{
    display: flex;
    z-index: 1000;
    position: fixed;
    background-color: rgb(255, 255, 255);
    align-items: center;
    width: 100%;
    list-style: none;
    padding: 0;
    height:12vh;
    padding-top:15px;
    margin-top: -0.6rem;
}

.nav-links-desktop {
    display: flex; /* Display on desktop */
    align-items: center;
}

.navbar-toggler {
    display: none; 
    border: none;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
    color: #38c5f4;
    margin-right: 1rem;
}




