:root {
    --text-color: #333; /* Standard text color */
    --button-bg: #0056b3; /* Darker blue for button background */
    --button-text: #ffffff; /* White text on buttons */
    --button-hover-bg: #004494; /* Even darker blue for button hover */
    --border-color: #004080; /* Dark blue for borders */
    --section-bg: #f7f7f7; /* Light section background */
    --accent-color: #003366; /* Darker blue accent color */
    --paragraph-color: #666; /* Paragraph text color */
    --card-bg: #ffffff; /* White card background */
    --hover-color: #0056b3; /* Darker blue for hover effects */
    --footer-bg: #2c2f33; /* Footer background */
    --light-bg: #e0e0e0; /* Light gray background */
    --footer-link-color: #0056b3; /* Darker blue for footer links */
    --footer-link-hover-color: #add8e6; /* Light blue hover color */
}


body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.logo {
    width: 40px;
    height: auto;
    transform: rotate(-90deg);
  
}


.home-hero {
 
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color:#1eb9f2;
    overflow: hidden;
    background: linear-gradient(135deg, #0a2a43, #12385b); 
}

.home-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
 
    z-index: 1;
}

.home-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-out;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
    z-index: 2;
    color: white;
    color: rgba(36, 35, 35);
    
}

.home-hero p {
    font-size: 1.7rem;
    margin-bottom: 30px;
    animation: fadeIn 2s ease-out;
    font-weight: 300;
    line-height: 1.5;
    z-index: 2;
    color:white;
  
 
}

.home-hero button {
    padding: 15px 40px;
    font-size: 1.3rem;
    background-color: var(--button-bg);
    color: var(--button-text);
    border: none;
    cursor: pointer;
    border-radius: 50px;
    animation: fadeIn 2.5s ease-out;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.home-hero button:hover {
    background-color: var(--button-hover-bg);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.expertise {
    padding: 80px 0;
    text-align: center;
    background-color: var(--section-bg);
}

.expertise h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-weight: 600;
}

.expertise p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: var(--paragraph-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.expertise-item {
    background-color: var(--card-bg);
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.expertise-item img {
    width: 60px;
    margin-bottom: 20px;
}

.expertise-item h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.technology-stack {
    padding: 80px 0;
    color: var(--text-color);
    text-align: center;
    background: linear-gradient(135deg, #f0f0f0, #d9e6f5);
    position: relative;
    overflow: hidden;
}

.technology-stack::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 150%;
    height: 100%;
    background: rgba(30, 144, 255, 0.05);
    transform: rotate(15deg);
    z-index: 0;
}

.technology-stack h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: var(--accent-color);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.tech-stack-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.tech-stack-grid span {
    background: linear-gradient(145deg, var(--accent-color), #007acc);
    padding: 15px 30px;
    border-radius: 30px;
    color: white;
    font-size: 1.3rem;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.tech-stack-grid span:hover {
    transform: scale(1.1);
    background: var(--hover-color);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.tech-stack-grid span:active {
    transform: scale(0.95);
    transition: transform 0.2s ease;
}

.case-studies {
    padding: 50px 0;
    background-color: #f4f4f4; /* Light background for contrast */
}

.case-studies h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
}

.case-studies p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 1.2rem;
}

.case-studies-grid {
    display: flex;
    justify-content: center; /* Center items */
    flex-wrap: wrap;
    gap: 20px; /* Spacing between items */
}

.case-study-item {
    background: white;
    border-radius: 12px; /* More rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Deeper shadow for elevation */
    padding: 20px;
    margin: 10px;
    width: calc(30% - 20px); /* Adjust width based on spacing */
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effect */
}

.case-study-item:hover {
    transform: translateY(-5px); /* Lift effect */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.case-study-item h3 {
    margin-bottom: 10px;
    color: #113153; /* Accent color */
    font-weight: bold;
}

.case-study-item p {
    color: #555;
    line-height: 1.5; /* Better readability */
}

/* Media Queries for Responsiveness */

/* For medium-sized devices (tablets) */
@media (max-width: 1024px) {
    .case-study-item {
        width: calc(45% - 20px); /* Two items per row */
    }
}

/* For smaller devices (smartphones) */
@media (max-width: 768px) {
    .case-study-item {
        width: 100%; /* Full width for each item */
    }
}

/* For very small devices (extra small smartphones) */
@media (max-width: 480px) {
    .case-studies h2 {
        font-size: 2rem; /* Slightly smaller heading */
    }

    .case-studies p {
        font-size: 1rem; /* Smaller text for better readability */
    }

    .case-study-item {
        padding: 15px; /* Less padding for smaller screens */
    }
}



.testimonials {
    padding: 80px 0;
    text-align: center;
    background-color: var(--section-bg);
}

.testimonials h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: var(--accent-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background-color: var(--light-bg);
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-item p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-item h3 {
    font-size: 1.4rem;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .home-hero h1 {
        font-size: 3rem;
    }
    .home-hero p {
        font-size: 1.2rem;
    }
    .expertise h2,
    .technology-stack h2,
    .case-studies h2,
    .testimonials h2 {
        font-size: 2.4rem;
    }

    footer h5 {
        font-size: 1.2rem;
    }

    footer p,
    footer a {
        font-size: 0.9rem;
    }
}

footer {
    background: linear-gradient(135deg, #f8f9fa, #e2e6ea);
    color: var(--text-color);
}

footer h5 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

footer p {
    font-size: 1rem;
    line-height: 1.5;
}

footer a {
    color: var(--footer-link-color); /* Use variable for default link color */
    transition: color 0.3s;
}

footer a:hover {
    color: var(--footer-link-hover-color); /* Use variable for hover link color */
    text-decoration: underline;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links a {
    margin: 0 10px;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.1);
}



/* About section */
.about {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
}

.about-content h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-content p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.about-content a.cta {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    color: #fff;
    background-color: #007BFF;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.about-content a.cta:hover {
    background-color: #0056b3;
}

/* Typography */
body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
    padding: 0;
}

.text-reset {
    color: inherit; 
    text-decoration: none; 
}



.mission {
    padding: 80px 0;
    color: #e0e6ed; /* Light text for contrast */
    text-align: center;
    background: linear-gradient(135deg, #0a2a43, #12385b); /* Dark blue gradient */
    position: relative;
    overflow: hidden;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 150%;
    height: 100%;
    background: rgba(30, 144, 255, 0.1); /* Soft blue overlay for depth */
    transform: rotate(15deg);
    z-index: 0;
}

.mission h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #1eb9f2; /* Accent color in bright blue */
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.mission-content {
    position: relative;
    z-index: 1;
}

.mission-content p {
    font-size: 1.3rem;
    color: #e0e6ed; /* Light text color */
    line-height: 1.6;
    margin-bottom: 20px;
}





/* Responsive Design */
@media (max-width: 768px) {
    .mission-content h2, .about-content h2 {
        font-size: 2em;
    }

    .mission-content p, .about-content p {
        font-size: 1em;
    }

    .about-content a.cta {
        padding: 12px 24px;
        font-size: 1em;
    }
}


.our-vision {
    padding: 80px 0;
    background: #f9f9f9; /* Light background */
}
.vision-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.vision-text {
    flex: 1;
}

.vision-text h2 {
    font-size: 2.4rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.vision-text p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
}

.vision-image {
    flex: 1;
    text-align: center;
}

.vision-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .vision-content {
        flex-direction: column;
        gap: 20px;
    }

    .vision-text {
        text-align: center;
    }
}

.philosophy {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f0f0, #d9e6f5);
    text-align: center;
}

.philosophy-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: justify;
    gap: 0;
}

.philosophy-text {
    flex: 1;
    text-align: left;
   
}

.philosophy-text h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 20px;
    font-weight: 600;
}

.philosophy-text p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
}

.philosophy-image {
    flex: 1;
}

.philosophy-image img {
    max-width:85%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .philosophy-content {
        flex-direction: column;
        text-align: center;
    }

    .philosophy-text {
        padding-right: 0;
    }
}
