/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1F1F1F;
    background-color: #FDFEFF;
    overflow-x: hidden;
}

/* Navigation Styles */
#mainNavigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(253, 254, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(209, 240, 255, 0.3);
}

#navContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logoSection {
    display: flex;
    align-items: center;
}

#logoImg {
    max-width: 100px;
    height: auto;
    transition: all 0.3s ease;
}

#logoImg:hover {
    transform: scale(1.05);
}

#logoSection #logoLink {
    font-size: 1.8rem;
    font-weight: bold;
    color: #7D5FFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

#logoSection #logoLink:hover {
    transform: scale(1.05);
    color: #FF4D6D;
}

#navMenu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

#navMenu li a {
    color: #1F1F1F;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

#navMenu li a:hover {
    color: #38B6FF;
    background-color: rgba(209, 240, 255, 0.5);
    transform: translateY(-2px);
}

#navMenu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #38B6FF, #7D5FFF);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

#navMenu li a:hover::after {
    width: 80%;
}

/* Hamburger Menu */
#hamburgerMenu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
}

#hamburgerMenu span {
    width: 25px;
    height: 3px;
    background-color: #1F1F1F;
    transition: all 0.3s ease;
    border-radius: 2px;
}

#hamburgerMenu.active #hamburgerLine1 {
    transform: rotate(45deg) translate(5px, 5px);
}

#hamburgerMenu.active #hamburgerLine2 {
    opacity: 0;
}

#hamburgerMenu.active #hamburgerLine3 {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
#heroSection {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #D1F0FF 0%, #FFF2B2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#heroContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

#heroTitle {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #7D5FFF, #38B6FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInFromLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

#heroSubtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #1F1F1F;
    opacity: 0.8;
    animation: slideInFromLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    transform-origin: left;
}

#heroButtons {
    display: flex;
    gap: 1rem;
    animation: slideInFromLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
    transform-origin: left;
}

#ctaButton1, #ctaButton2 {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 150px;
}

#ctaButton1 {
    background: linear-gradient(135deg, #38B6FF, #7D5FFF);
    color: white;
    box-shadow: 0 4px 15px rgba(56, 182, 255, 0.3);
}

#ctaButton1:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(56, 182, 255, 0.4);
}

#ctaButton2 {
    background: white;
    color: #38B6FF;
    border: 2px solid #38B6FF;
}

#ctaButton2:hover {
    background: #38B6FF;
    color: white;
    transform: translateY(-3px);
}

#heroImage {
    animation: slideInFromRight 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
    transform-origin: right;
}

#heroImg {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#heroImg:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Features Section */
#featuresSection {
    padding: 6rem 0;
    background: #FDFEFF;
}

#featuresContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

#featuresTitle {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1F1F1F;
}

#featuresGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

#featuresGrid > div {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(209, 240, 255, 0.5);
}

#featuresGrid > div:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #38B6FF;
}

#featuresGrid div div {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 1rem;
    background: linear-gradient(135deg, #D1F0FF, #FFF2B2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

#featuresGrid div div:hover {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #38B6FF, #7D5FFF);
}

.feature-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(45%) sepia(82%) saturate(1234%) hue-rotate(190deg) brightness(101%) contrast(101%);
}

#featuresGrid div div:hover .feature-icon-img {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}

#featuresGrid h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #7D5FFF;
}

#featuresGrid p {
    color: #1F1F1F;
    opacity: 0.8;
    line-height: 1.6;
}

/* Technologies Section */
#technologiesSection {
    padding: 6rem 0;
    background: linear-gradient(135deg, #D1F0FF 0%, rgba(125, 95, 255, 0.1) 100%);
}

#techContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

#techTitle {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1F1F1F;
}

#techGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

#techGrid > div {
    background: white;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(209, 240, 255, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#techGrid > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #38B6FF;
}

.tech-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tech-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    transform: scale(1.05);
}

#techGrid h3 {
    font-size: 1.4rem;
    margin: 0 0 1rem;
    color: #7D5FFF;
    position: relative;
    padding-bottom: 0.5rem;
}

#techGrid p {
    color: #1F1F1F;
    opacity: 0.8;
    line-height: 1.6;
    margin: 0 0 1.5rem;
    flex-grow: 1;
}

#techCategory4 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

#techImg {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: all 0.3s ease;
}

#techImg:hover {
    transform: scale(1.05);
}

/* Testimonials Section */
#testimonialsSection {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(209, 240, 255, 0.3) 0%, rgba(255, 242, 178, 0.3) 100%);
}

#testimonialsContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

#testimonialsTitle {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1F1F1F;
}

#testimonialsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(209, 240, 255, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #38B6FF;
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.testimonial-text {
    color: #1F1F1F;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #38B6FF;
}

.testimonial-info h4 {
    color: #7D5FFF;
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-info p {
    color: #1F1F1F;
    opacity: 0.7;
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    #testimonialsGrid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    #testimonialsTitle {
        font-size: 2rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    #testimonialsContainer {
        padding: 0 1rem;
    }
    
    #testimonialsTitle {
        font-size: 1.8rem;
    }
    
    .testimonial-content {
        padding: 1.2rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
}

/* CTA Section */
#ctaSection {
    padding: 6rem 0;
    background: linear-gradient(135deg, #38B6FF, #7D5FFF);
    text-align: center;
}

#ctaContainer {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

#ctaTitle {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

#ctaDescription {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

#ctaMainButton {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #38B6FF;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#ctaMainButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: #FFF2B2;
}

/* Footer */
#mainFooter {
    background: #1F1F1F;
    color: white;
    padding: 3rem 0 1rem;
}

#footerContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

#footerContent {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

#footerBrand {
    font-size: 1.5rem;
    color: #38B6FF;
    margin-bottom: 0.5rem;
}

#footerTagline {
    color: rgba(255, 255, 255, 0.7);
}

#footerContact h4, #footerLinks h4 {
    color: #38B6FF;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

#footerContact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

#footerNavList {
    list-style: none;
}

#footerNavList li {
    margin-bottom: 0.5rem;
}

#footerNavList a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

#footerNavList a:hover {
    color: #38B6FF;
    padding-left: 5px;
}

#footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
}

#copyright {
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1F1F1F;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(209, 240, 255, 0.5);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #FDFEFF;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #38B6FF;
    box-shadow: 0 0 0 3px rgba(56, 182, 255, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    background: linear-gradient(135deg, #38B6FF, #7D5FFF);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(56, 182, 255, 0.3);
}

/* Content Sections */
.content-section {
    padding: 8rem 0 4rem;
    min-height: 80vh;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1F1F1F;
    text-align: center;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1F1F1F;
    margin-bottom: 2rem;
}

.content-text h2 {
    color: #7D5FFF;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.content-text h3 {
    color: #38B6FF;
    margin: 1.5rem 0 0.5rem;
    font-size: 1.4rem;
}

.content-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-text li {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    #hamburgerMenu {
        display: flex;
    }
    
    #navMenu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(253, 254, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid rgba(209, 240, 255, 0.3);
    }
    
    #navMenu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    #navMenu li a {
        display: block;
        padding: 1rem;
        text-align: center;
        border-radius: 8px;
        background: rgba(209, 240, 255, 0.3);
    }
    
    #heroContainer {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    #heroTitle {
        font-size: 2.5rem;
    }
    
    #heroSubtitle {
        font-size: 1.1rem;
    }
    
    #heroButtons {
        flex-direction: column;
        align-items: center;
    }
    
    #ctaButton1, #ctaButton2 {
        width: 100%;
        max-width: 250px;
    }
    
    #featuresGrid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    #techGrid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    #footerContent {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .content-title {
        font-size: 2rem;
    }
    
    .content-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    #navContainer {
        padding: 0 1rem;
    }
    
    #heroSection {
        padding: 6rem 0 2rem;
    }
    
    #heroContainer {
        padding: 0 1rem;
    }
    
    #heroTitle {
        font-size: 2rem;
    }
    
    #featuresContainer,
    #techContainer,
    #ctaContainer {
        padding: 0 1rem;
    }
    
    #featuresTitle,
    #techTitle,
    #ctaTitle {
        font-size: 2rem;
    }
    
    .content-container {
        padding: 0 1rem;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animations */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth transitions for page loads */
.page-transition {
    opacity: 0;
    transform: translateY(20px);
    animation: pageLoad 0.8s ease forwards;
}

@keyframes pageLoad {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Page Specific Styles */
#aboutHeroContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

#aboutText {
    order: 1;
}

#aboutImage {
    order: 2;
    animation: fadeInRight 1s ease 0.4s both;
}

#aboutImg {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#aboutImg:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

#offerGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

#offerGrid > div {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(209, 240, 255, 0.5);
}

#offerGrid > div:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #38B6FF;
}

#offerGrid div div {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 1rem;
    background: linear-gradient(135deg, #D1F0FF, #FFF2B2);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

#offerGrid h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #7D5FFF;
}

#offerGrid p {
    color: #1F1F1F;
    opacity: 0.8;
    line-height: 1.6;
}

#approachImage {
    margin-top: 3rem;
    text-align: center;
}

#approachImg {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#approachImg:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Contact Page Specific Styles */
#contactContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

#contactFormContainer {
    order: 1;
}

#contactInfo {
    order: 2;
}

#contactDetails {
    margin: 2rem 0;
}

#contactDetails > div {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(209, 240, 255, 0.5);
}

#contactDetails > div:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #38B6FF;
}

#contactDetails div div:first-child {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #D1F0FF, #FFF2B2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#contactDetails h3 {
    color: #7D5FFF;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

#contactDetails p {
    color: #1F1F1F;
    opacity: 0.8;
    line-height: 1.5;
    margin: 0;
}

#contactImage {
    margin-top: 2rem;
}

#contactImg {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#contactImg:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* FAQ Styles */
.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(209, 240, 255, 0.5);
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #38B6FF;
}

.faq-item h3 {
    background: linear-gradient(135deg, #D1F0FF, #FFF2B2);
    padding: 1.5rem;
    margin: 0;
    color: #7D5FFF;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item h3:hover {
    background: linear-gradient(135deg, #38B6FF, #7D5FFF);
    color: white;
}

.faq-item p {
    padding: 1.5rem;
    margin: 0;
    color: #1F1F1F;
    opacity: 0.8;
    line-height: 1.6;
    background: white;
}

/* Additional animations for FAQ */
.faq-item h3::after {
    content: '+';
    float: right;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    transform: rotate(45deg);
}

/* Message styles for forms */
.message {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    max-width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.message.success {
    background: linear-gradient(135deg, #38B6FF, #7D5FFF);
}

.message.error {
    background: linear-gradient(135deg, #FF4D6D, #FF6B9D);
}

/* Enhanced navbar scrolled state */
#mainNavigation.scrolled {
    background: rgba(253, 254, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Enhanced hover states for buttons */
#ctaButton1:active, #ctaButton2:active, #ctaMainButton:active, .form-submit:active {
    transform: translateY(-1px);
}

/* Additional tech grid styling */
#techCategory4 {
    grid-column: span 1;
}

/* Policy pages specific styling */
#privacySection, #termsSection, #cookiesSection {
    background: linear-gradient(135deg, rgba(209, 240, 255, 0.3) 0%, rgba(255, 242, 178, 0.3) 100%);
}

.content-text a {
    color: #38B6FF;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.content-text a:hover {
    color: #7D5FFF;
    border-bottom-color: #7D5FFF;
}

/* Enhanced responsive design */
@media (max-width: 1024px) {
    #aboutHeroContent, #contactContent {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    #aboutText {
        order: 1;
    }
    
    #aboutImage {
        order: 2;
    }
    
    #contactFormContainer {
        order: 1;
    }
    
    #contactInfo {
        order: 2;
    }
}

@media (max-width: 768px) {
    #offerGrid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    #contactContent {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    #faqTitle, #offerTitle, #approachTitle, #techCoverTitle {
        font-size: 2rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .faq-item p {
        padding: 1rem;
    }
    
    #contactDetails > div {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    #aboutHeroContent, #contactContent {
        gap: 1.5rem;
    }
    
    #offerGrid {
        gap: 1rem;
    }
    
    #offerGrid > div, #contactDetails > div, .faq-item {
        margin-bottom: 1rem;
    }
    
    #formTitle, #infoTitle {
        font-size: 1.5rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
}

/* Advanced animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations to specific elements */
#featuresGrid > div:nth-child(1) {
    animation: slideInFromLeft 0.8s ease 0.2s both;
}

#featuresGrid > div:nth-child(2) {
    animation: fadeInUp 0.8s ease 0.4s both;
}

#featuresGrid > div:nth-child(3) {
    animation: fadeInUp 0.8s ease 0.6s both;
}

#featuresGrid > div:nth-child(4) {
    animation: slideInFromRight 0.8s ease 0.8s both;
}

#offerGrid > div:nth-child(1) {
    animation: bounceIn 0.8s ease 0.2s both;
}

#offerGrid > div:nth-child(2) {
    animation: bounceIn 0.8s ease 0.4s both;
}

#offerGrid > div:nth-child(3) {
    animation: bounceIn 0.8s ease 0.6s both;
}

#offerGrid > div:nth-child(4) {
    animation: bounceIn 0.8s ease 0.8s both;
}

/* Print styles */
@media print {
    #mainNavigation, #hamburgerMenu, #footerBottom {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: white;
    }
    
    .content-section {
        padding: 1rem 0;
    }
    
    .content-title {
        font-size: 18pt;
        margin-bottom: 1rem;
    }
    
    .content-text {
        font-size: 11pt;
    }
}

/* Responsive adjustments for tech cards */
@media (max-width: 768px) {
    .tech-card-image {
        height: 220px;
    }
    
    #techGrid h3 {
        font-size: 1.3rem;
        margin: 1.2rem 1.2rem 0.8rem;
    }
    
    #techGrid p {
        margin: 0 1.2rem 1.2rem;
    }
    
    .tech-card-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
        margin: 0 1.2rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .tech-card-image {
        height: 200px;
    }
    
    #techGrid h3 {
        font-size: 1.2rem;
        margin: 1rem 1rem 0.6rem;
    }
    
    #techGrid p {
        margin: 0 1rem 1rem;
        font-size: 0.9rem;
    }
    
    .tech-card-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        margin: 0 1rem 1rem;
    }
}

.tech-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.5rem;
    background: white;
}

.tech-card-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #38B6FF, #7D5FFF);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(56, 182, 255, 0.2);
    margin-top: auto;
    width: 100%;
}

.tech-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 182, 255, 0.3);
    color: white;
}

.tech-card-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(56, 182, 255, 0.2);
}

/* Team Section Styles */
#teamSection {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(209, 240, 255, 0.3) 0%, rgba(255, 242, 178, 0.3) 100%);
}

#teamGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

#teamGrid > div {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(209, 240, 255, 0.5);
}

#teamGrid > div:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #38B6FF;
}

.team-member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #38B6FF;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#teamGrid > div:hover .team-img {
    transform: scale(1.1);
}

#teamGrid h3 {
    color: #7D5FFF;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.team-position {
    color: #38B6FF;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-description {
    color: #1F1F1F;
    opacity: 0.8;
    line-height: 1.6;
}

/* Success Stories Section Styles */
#successSection {
    padding: 6rem 0;
    background: #FDFEFF;
}

#successGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

#successGrid > div {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(209, 240, 255, 0.5);
}

#successGrid > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #38B6FF;
}

.success-quote {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(209, 240, 255, 0.3) 0%, rgba(255, 242, 178, 0.3) 100%);
    border-radius: 12px;
    position: relative;
}

.success-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: #38B6FF;
    opacity: 0.3;
}

.success-quote p {
    font-style: italic;
    color: #1F1F1F;
    line-height: 1.6;
}

.success-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.success-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #38B6FF;
}

.success-info h4 {
    color: #7D5FFF;
    margin: 0;
    font-size: 1.1rem;
}

.success-info p {
    color: #1F1F1F;
    opacity: 0.7;
    margin: 0;
    font-size: 0.9rem;
}

/* Future Plans Section Styles */
#futureSection {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(209, 240, 255, 0.3) 0%, rgba(255, 242, 178, 0.3) 100%);
}

#futureImage {
    margin-top: 3rem;
    text-align: center;
}

#futureImg {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#futureImg:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    #teamGrid, #successGrid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member-image {
        width: 150px;
        height: 150px;
    }
    
    #successGrid > div {
        padding: 1.5rem;
    }
    
    .success-quote {
        padding: 1.2rem;
    }
    
    #futureImage {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    #teamGrid, #successGrid {
        gap: 1rem;
    }
    
    .team-member-image {
        width: 120px;
        height: 120px;
    }
    
    #successGrid > div {
        padding: 1.2rem;
    }
    
    .success-quote {
        padding: 1rem;
    }
    
    .success-avatar {
        width: 50px;
        height: 50px;
    }
}

/* Approach Section Styles */
#approachSection {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(209, 240, 255, 0.3) 0%, rgba(255, 242, 178, 0.3) 100%);
}

#approachTitle {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1F1F1F;
    position: relative;
    padding-bottom: 1rem;
}

#approachTitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #38B6FF, #7D5FFF);
    border-radius: 2px;
}

.approach-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(209, 240, 255, 0.5);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #38B6FF;
}

.approach-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: linear-gradient(135deg, #D1F0FF, #FFF2B2);
    padding: 1rem;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.approach-card:hover .approach-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #38B6FF, #7D5FFF);
    color: white;
}

.approach-card h3 {
    color: #7D5FFF;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.approach-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #38B6FF, #7D5FFF);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.approach-card:hover h3::after {
    width: 100px;
}

.approach-card p {
    color: #1F1F1F;
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

#approachImage {
    margin-top: 3rem;
    text-align: center;
}

#approachImg {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#approachImg:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .approach-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .approach-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }
    
    .approach-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .approach-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .approach-icon {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
    }
    
    .approach-card h3 {
        font-size: 1.2rem;
    }
}

/* Technologies Section Styles */
#techCoverSection {
    padding: 6rem 0;
    background: #FDFEFF;
}

#techCoverTitle {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1F1F1F;
    position: relative;
    padding-bottom: 1rem;
}

#techCoverTitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #38B6FF, #7D5FFF);
    border-radius: 2px;
}

#techCoverSection .content-text {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

#techCoverSection .content-text h3 {
    color: #7D5FFF;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

#techCoverSection .content-text h3::before {
    content: '⚡';
    color: #38B6FF;
    font-size: 1.2em;
}

#techCoverSection .content-text p {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(209, 240, 255, 0.5);
    position: relative;
    overflow: hidden;
}

#techCoverSection .content-text p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #38B6FF, #7D5FFF);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#techCoverSection .content-text p:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #38B6FF;
}

#techCoverSection .content-text p:hover::before {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #approachSection .content-text,
    #techCoverSection .content-text {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    #approachTitle,
    #techCoverTitle {
        font-size: 2rem;
    }
    
    #approachSection .content-text h3,
    #techCoverSection .content-text h3 {
        font-size: 1.3rem;
    }
    
    #approachSection .content-text p,
    #techCoverSection .content-text p {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    #approachSection,
    #techCoverSection {
        padding: 4rem 0;
    }
    
    #approachTitle,
    #techCoverTitle {
        font-size: 1.8rem;
    }
    
    #approachSection .content-text h3,
    #techCoverSection .content-text h3 {
        font-size: 1.2rem;
    }
    
    #approachSection .content-text p,
    #techCoverSection .content-text p {
        padding: 1rem;
    }
}

/* Contact page specific adjustments */
#contactHeroSection {
    padding: 8rem 0 2rem;
    min-height: auto;
}

#contactFormSection {
    padding: 2rem 0 4rem;
}

/* Thank You Page Styles */
#thankYouSection {
    background: linear-gradient(135deg, #D1F0FF 0%, #FFF2B2 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#thankYouContent {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease;
}

#thankYouIcon {
    font-size: 4rem;
    color: #38B6FF;
    background: linear-gradient(135deg, #D1F0FF, #FFF2B2);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: bounceIn 0.8s ease 0.2s both;
}

#thankYouActions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    #thankYouContent {
        padding: 2rem;
        margin: 1rem;
    }
    
    #thankYouIcon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
    
    #thankYouActions {
        flex-direction: column;
    }
    
    #thankYouActions a {
        width: 100%;
        margin: 0.5rem 0 !important;
    }
}

@media (max-width: 480px) {
    #thankYouContent {
        padding: 1.5rem;
    }
    
    #thankYouIcon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
}

/* Cookie Popup Styles */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Body lock when overlay is active */
body.overlay-active {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.cookie-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 100000;
    max-width: 400px;
    width: 90%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(209, 240, 255, 0.5);
}

.cookie-popup.active {
    opacity: 1;
    visibility: visible;
}

.cookie-content h3 {
    color: #7D5FFF;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cookie-content p {
    color: #1F1F1F;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-button {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    flex: 1;
}

.cookie-button.accept {
    background: linear-gradient(135deg, #38B6FF, #7D5FFF);
    color: white;
}

.cookie-button.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(56, 182, 255, 0.3);
}

.cookie-button.reject {
    background: white;
    color: #38B6FF;
    border: 2px solid #38B6FF;
}

.cookie-button.reject:hover {
    background: #38B6FF;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .cookie-popup {
        padding: 1.5rem;
    }
    
    .cookie-content h3 {
        font-size: 1.3rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-button {
        width: 100%;
    }
}