* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #3B82F6;
    --secondary-blue: #1E40AF;
    --accent-cyan: #06B6D4;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --border-radius: 16px;
    --spacing: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(var(--spacing) * 3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgb(255, 255, 255) !important;
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(var(--spacing) * 3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo .logo-img {
    height: 50px;
    height: 48px;
    width: auto;
    margin-top: 8px;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
}

.nav-logo .logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: calc(var(--spacing) * 4);
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(var(--spacing) * 3);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing) * 8);
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: calc(var(--spacing) * 3);
}

.gradient-text {
    background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: calc(var(--spacing) * 4);
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: calc(var(--spacing) * 2);
}

.btn {
    display: inline-block;
    padding: calc(var(--spacing) * 2) calc(var(--spacing) * 4);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-visual {
    animation: slideInRight 1s ease-out;
}

.floating-cards {
    position: relative;
    height: 500px;
}

.card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: calc(var(--spacing) * 3);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 150px;
    right: 50px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 0;
    left: 100px;
    animation-delay: 2s;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: calc(var(--spacing) * 2);
}

.card h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: rotate 20s linear infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation-delay: 10s;
}

/* Sections */
section {
    padding: calc(var(--spacing) * 12) 0;
}

.section-header {
    text-align: center;
    margin-bottom: calc(var(--spacing) * 8);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: calc(var(--spacing) * 2);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--gray-50);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: calc(var(--spacing) * 8);
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: calc(var(--spacing) * 3);
    color: var(--text-primary);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: calc(var(--spacing) * 3);
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--spacing) * 4);
    margin-top: calc(var(--spacing) * 6);
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: calc(var(--spacing));
}

.stat p {
    color: var(--text-secondary);
    font-weight: 500;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(var(--spacing) * 2);
}

.tech-item {
    background: var(--white);
    padding: calc(var(--spacing) * 2);
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    color: var(--primary-blue);
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: calc(var(--spacing) * 4);
}

.service-card {
    background: var(--white);
    padding: calc(var(--spacing) * 4);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.service-icon {
    margin-bottom: calc(var(--spacing) * 3);
}

.icon-bg {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: var(--gradient-primary);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: calc(var(--spacing) * 2);
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Team Section */
.team {
    background: var(--gray-50);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing) * 4);
}

.philosophy-item {
    background: var(--white);
    padding: calc(var(--spacing) * 4);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: calc(var(--spacing) * 2);
}

.philosophy-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: calc(var(--spacing) * 2);
    color: var(--text-primary);
}

.philosophy-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing) * 8);
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: calc(var(--spacing) * 3);
    color: var(--text-primary);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: calc(var(--spacing) * 4);
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing) * 3);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing) * 2);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.method-info h4 {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.method-info p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-form {
    background: var(--gray-50);
    padding: calc(var(--spacing) * 4);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: calc(var(--spacing) * 3);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: calc(var(--spacing) * 2);
    border: 2px solid var(--gray-100);
    border-radius: calc(var(--border-radius) / 2);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: calc(var(--spacing) * 8) 0 calc(var(--spacing) * 4);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: calc(var(--spacing) * 6);
    margin-bottom: calc(var(--spacing) * 6);
}
.phone-icon{
    width:30px;
}
.email-icon{
    width:25px;
}
.contact-info-icon a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    color: #ffffff;
    font-weight: 600;
}

.contact-info-icon {
        margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer-logo {
    height: 50px;
    margin-bottom: calc(var(--spacing) * 2);
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: calc(var(--spacing) * 3);
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: calc(var(--spacing) * 2);
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: calc(var(--spacing) * 2);
}

.social-link {
    padding: calc(var(--spacing)) calc(var(--spacing) * 2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: calc(var(--border-radius) / 2);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: calc(var(--spacing) * 4);
    text-align: center;
    color: var(--text-light);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.inspiration-card {
    background: var(--white);
    padding: 12px 12px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    width: 255px;
    min-height: 114px;
    justify-content: center !important;
    display: flex;
    flex-direction: column;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
}

.inspiration-cards {
    display: flex;
    /* flex-direction: column; */
    gap: 23px;
    flex-wrap: wrap;
    justify-content: center;
    height: 100%;
}

.inspiration-cards .card-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0px;
    color: #7162c3;
    text-shadow: 1px 2px 1px #ccc;
    line-height: 54px;
}

.inspiration-cards h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-primary);
}




ul.social-link-ul {
    display: flex;
    gap: 15px;
    margin-top: 14px;
}

ul.social-link-ul img {
    width: 42px;
}



/* Responsive Design */

@media screen and (min-width: 1150px) {
.hero-container .card {

    min-width: 200px;
    min-height: 200px;
}
.hero-container .card-3
 {
    bottom: 22px;
    left: 38px;
    animation-delay: 2s;
}
.hero-container .card-1 {
    top: 26px;
    left: 11px;
    animation-delay: 0s;
}
.hero-container .card-icon {
    font-size: 3.5rem;
    margin-bottom: calc(var(--spacing) * 0);
}
.hero-container .card h3 {
    font-size: 21px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 3.1px;
}
}
@media screen and (max-width: 1440px) {
.hero-title {
    font-size: 3.3rem;
    line-height: 1.2;
    margin-bottom: calc(var(--spacing) * 1.3);
}
.hero-subtitle {
    margin-bottom: calc(var(--spacing) * 2);
}
.hero-container {
    padding-top: 32px;
}
/* .hero-container .card {

    min-width: 200px;
    min-height: 200px;
}
.hero-container .card-3
 {
    bottom: 22px;
    left: 38px;
    animation-delay: 2s;
}
.hero-container .card-1 {
    top: 26px;
    left: 11px;
    animation-delay: 0s;
}
.hero-container .card-icon {
    font-size: 3.5rem;
    margin-bottom: calc(var(--spacing) * 0);
}
.hero-container .card h3 {
    font-size: 21px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 3.1px;
} */

}

@media screen and (max-width: 1149px) and (min-width: 1025px) {
    .hero-container .card {min-width: 201px;min-height: 160px;}
.hero-container .card-3
 {
    bottom: 22px;
    left: 38px;
    animation-delay: 2s;
}
.hero-container .card-1 {
    top: 26px;
    left: 11px;
    animation-delay: 0s;
}
.hero-container .card-icon {
    font-size: 3.5rem;
    margin-bottom: calc(var(--spacing) * 0);
}
.hero-container .card h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 3.1px;
} 

.card.card-2 {
    right: 0;
}
}
@media screen and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing) * 6);
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing) * 6);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing) * 6);
    }
    
    .footer-content {
               grid-template-columns: 1fr;
        gap: calc(var(--spacing) * 4);
        text-align: center;
    }
.social-link-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.footer-section:empty {
    display: none;
}
.contact-info-icon a {
    text-align: center;
    justify-content: center;
}
}

@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: calc(var(--spacing) * 4) 0;
        border-top: 1px solid var(--gray-100);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: calc(var(--spacing) * 2) 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing) * 3);
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        text-align: center;
    }
}

 @media screen and (max-width: 1024px) and (min-width: 480px) {
.hero-container    .floating-cards {
    gap: 20px;
    display: flex;
    height: auto;
}
.hero-container .card {
    position: unset;
    width: 100%;
}
.hero-buttons {
    justify-content: center;
}
}
@media screen and (max-width: 480px) {
    .container {
        padding: 0 calc(var(--spacing) * 2);
    }
    
    .nav-container {
        padding: 0 calc(var(--spacing) * 2);
    }
    
    .hero-container {
        padding: 0 calc(var(--spacing) * 2);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-cards {
       
    }
    .hero-content {
    padding-top: 50px;
}
    .card {
        position: relative !important;
        margin-bottom: calc(var(--spacing) * 2);
    }
    
    .card-1, .card-2, .card-3 {
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
}

.contact-info h3 {
    margin-bottom: 5px;
    line-height: normal;
    font-size: 25px;
}

section.contact-page, section.policy-page, section.policy-page {
    padding-top: 140px;
}

.policy-content h1, section.policy-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.policy-content h2, section.policy-page h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 40px 0 20px;
    color: var(--text-primary);
}

.policy-content p, section.policy-page p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.policy-content ul, section.policy-page ul {
    margin: 20px 0;
}
.policy-content li , section.policy-page li{
    margin-bottom: 10px;
    line-height: 1.8;
    color: var(--text-secondary);
}
.policy-content, section.policy-page .policy-content {
  
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
   
}