/* Global Styles */
:root {
    --primary-color: #2d3436;
    --secondary-color: #0984e3;
    --accent-color: #00b894;
    --text-color: #2d3436;
    --light-text: #fff;
    --dark-bg: #1e272e;
    --gray-bg: #f5f6fa;
    --gradient-primary: linear-gradient(45deg, #0984e3, #00b894);
    --box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    --transition-speed: 0.3s;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    padding-top: 70px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    background-color: #ffffff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:not(.contact-btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:not(.contact-btn):hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.services-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    min-width: 250px;
    padding: 1rem 0;
    margin-top: 10px;
    list-style: none;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 30px;
    width: 10px;
    height: 10px;
    background: white;
    transform: rotate(45deg);
    box-shadow: -3px -3px 5px rgba(0,0,0,0.04);
}

.services-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-weight: 500;
}

.dropdown-menu a i {
    font-size: 18px;
    color: var(--secondary-color);
}

.dropdown-menu a:hover {
    background: var(--gray-bg);
}

.contact-btn {
    background: var(--gradient-primary);
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 30px;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: none;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        cursor: pointer;
        z-index: 999;
    }

    .menu-toggle .bar {
        width: 100%;
        height: 3px;
        background: var(--primary-color);
        border-radius: 3px;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

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

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
        transition: right 0.3s ease-in-out;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        margin: 0;
    }

    .nav-links a {
        display: block;
        padding: 8px 15px;
        color: var(--text-color);
        border-bottom: 1px solid #eee;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .services-dropdown {
        width: 100%;
    }

    .services-dropdown > a {
        width: 100%;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-menu {
        display: none;
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 0;
        padding-left: 20px;
    }

    .services-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        margin: 10px 0;
    }

    .dropdown-menu a {
        padding: 12px 20px;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
    }

    .dropdown-menu::before {
        display: none;
    }

    .services-dropdown > a i {
        transition: transform 0.3s ease;
    }

    .services-dropdown.active > a i {
        transform: rotate(180deg);
    }

    .contact-content,
    .services-grid,
    .portfolio-grid,
    .testimonial-grid {
        width: 100%;
        margin: 0;
        padding: 10px;
    }

    .hero-content {
        padding: 20px 10px;
    }

    .hero-text {
        max-width: 100%;
    }

    .cta-section {
        padding: 40px 10px;
    }

    .footer-content {
        padding: 0 10px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .navbar {
        padding: 0 3%;
    }

    .nav-links {
        gap: 20px;
    }

    .company-name {
        font-size: 24px;
    }
}

@media screen and (min-width: 769px) and (max-width: 879px){
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        cursor: pointer;
        z-index: 999;
    }

    .menu-toggle .bar {
        width: 100%;
        height: 3px;
        background: var(--primary-color);
        border-radius: 3px;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

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

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
        transition: right 0.3s ease-in-out;
        overflow-y: auto;
        overflow-x: hidden;
        
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        margin: 0;
    }

    .nav-links a {
        display: block;
        padding: 8px 15px;
        color: var(--text-color);
        border-bottom: 1px solid #eee;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .services-dropdown {
        width: 100%;
    }

    .services-dropdown > a {
        width: 100%;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-menu {
        display: none;
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 0;
        padding-left: 20px;
    }

    .services-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        margin: 10px 0;
    }

    .dropdown-menu a {
        padding: 12px 20px;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
    }

    .dropdown-menu::before {
        display: none;
    }

    .services-dropdown > a i {
        transition: transform 0.3s ease;
    }

    .services-dropdown.active > a i {
        transform: rotate(180deg);
    }

    .contact-content,
    .services-grid,
    .portfolio-grid,
    .testimonial-grid {
        width: 100%;
        margin: 0;
        padding: 10px;
    }

    .hero-content {
        padding: 20px 10px;
    }

    .hero-text {
        max-width: 100%;
    }

    .cta-section {
        padding: 40px 10px;
    }

    .footer-content {
        padding: 0 10px;
    }
}


.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
}

.logo img{
    width: 175px;

    
}

.company-name {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}


/* Hero Section */
.hero {
    padding: 8rem 5% 5rem;
    background: var(--gray-bg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #636e72;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
}

.stat-text {
    color: #636e72;
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform var(--transition-speed);
}

.cta-primary {
    background: var(--gradient-primary);
    color: var(--light-text);
}

.cta-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-primary:hover, .cta-secondary:hover {
    transform: translateY(-3px);
}

.about{
    padding: 8rem 5%;
    background: white;
}

.about-content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text{
    max-width: 600px;
}

.about-text p{
    color: #636e72;
    margin-bottom: 2.5rem;
}

.about-text h3{
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-image{
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    
}

.about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
    transform: scale(1.1);
}

.about-image:hover img{
    transform: scale(1.2);
}

@media (max-width: 1024px) and (min-width: 768px) {
    .about-content{
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image img{
        height: 500px;
    }
}

@media screen and (max-width: 768px){
    
    .about{
        padding: 0 auto;
    }
    
    .about-content{
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text{
        text-align: center;
    }

    .about-image{
        height: 100%;
    }

    .about-image img{
        height: 100%;
    }

    .about{
        padding: 3rem 5%;
    }
    
}

.container-technology{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.web-technology {
    
    gap: 1rem;
    margin-top: 2rem;
}

.web-technology-grid{ 

    display: grid;
    grid-template-columns: repeat(5, minmax(50px, 1fr));
    gap: 2.5rem;
    margin-top: 0.4rem;
    align-items: center;
    text-align: center;
}


.web-technology-item img{
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform var(--transition-speed);
    
}


@media screen and (max-width: 768px){

    .web-technology{
        margin-top:0px ;
        padding: 0px;
    }


    .web-technology-grid{
        grid-template-columns: repeat(3, minmax(50px, 1fr));
    }

    .web-technology-item img{
        width: 60px;
        height: 60px;
    }

    .container-technology{
        padding: 3rem 5%;
    }

    .web-technology-grid h3{
        font-size: 0.9rem;
    }
    
    #tailwind{
        display: none !important;
    }
}



/* Services Section */
.services {
    padding: 8rem 5%;
    background: white;
    display: flex;
    flex-direction: column;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    color: #636e72;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
    text-align: left;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: #636e72;
    margin-bottom: 1.5rem;
}

.learn-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-speed);
}

.learn-more:hover {
    gap: 1rem;
}

.services a[class="cta-primary"] {
    text-align: center;
    margin: auto;
  }


@media screen and (max-width: 768px){
   .services{
        padding: 3rem 5%;
    }
    
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 8rem 5%;
    background: var(--gray-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

/* Portfolio Section */
.portfolio {
    padding: 8rem 5%;
    background: white;
    display: flex;
    flex-direction: column;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgb(0 0 0), #000000b8);    padding: 2rem;
    transform: translateY(100%);
    transition: transform var(--transition-speed);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: #dfe6e9;
    margin-bottom: 1rem;
}

.view-project {
    color: white;
    text-decoration: none;
    font-weight: 600;
    background: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}


.testimonials {
    padding: 80px 0;
    background: linear-gradient(rgba(var(--primary-rgb), 0.05), rgba(var(--primary-rgb), 0.02));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.rating {
    color: #ffd700;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.client-info h4 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.1rem;
}

.client-info span {
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}

/* CTA Section */
.cta-section {
    padding: 8rem 5%;
    background: var(--gradient-primary);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.cta-button {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform var(--transition-speed);
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.info-item p {
    color: var(--text-color);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.submit-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 20px;
    }
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--light-text);
    padding: 5rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-section p {
    color: #b2bec3;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section a {
    color: #b2bec3;
    text-decoration: none;
    transition: color var(--transition-speed);
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed);
}

/* Jab sirf a par hover kare */
.social-links a:hover {
    background: var(--secondary-color); /* Blue ya jo bhi color define hai */
    transform: translateY(-3px);
}

/* Jab a ya i par hover kare tab icon ka color white */
.social-links a:hover i {
    color: white;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #b2bec3;
}

.contact-info i {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #b2bec3;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-content {
        margin: 0 auto;
    }

    .cta-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .grid-container {
        padding: 0 10px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    display: block;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    padding: 0 10px;
}




/* About Page Enhanced Styles */
.about-hero {
    background: linear-gradient(135deg, 
        rgba(9, 132, 227, 0.85), 
        rgba(0, 184, 148, 0.85),
        rgba(0, 206, 201, 0.85)), 
        url('../images/about/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: gradientFlow 15s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.about-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, #fff, transparent);
    animation: fadeInBottom 1.5s ease-out;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/patterns/dot-pattern.png');
    opacity: 0.1;
    animation: floatBackground 20s linear infinite;
}

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

.about-hero-content {
    max-width: 900px;
    padding: 0 30px;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: contentFadeIn 1s ease forwards 0.5s;
}

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

.about-hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    font-weight: 800;
    text-transform: capitalize;
    color: #fff;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.2);
    position: relative;
    display: inline-block;
    animation: titleReveal 1.2s ease-out;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(-50px) skewY(5deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) skewY(0);
    }
}

.about-hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: #fff;
    animation: lineExpand 1s ease-out forwards 1s;
}

@keyframes lineExpand {
    to { width: 100%; }
}

.about-hero-content p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 2px 4px rgba(0,0,0,0.15);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.2s;
}

.about-overview {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.overview-content {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.overview-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 30px;
    position: relative;
}

.overview-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease forwards 0.5s;
}

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

.overview-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.overview-image:hover::before {
    opacity: 0.2;
}

.overview-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transform: scale(1);
    transition: transform 0.8s ease;
}

.overview-image:hover img {
    transform: scale(1.05);
}

.company-highlights {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.highlight-item {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: calc(var(--item-index) * 0.2s);
}

.highlight-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.highlight-item i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

/* Values Section Enhancement */
.about-values {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03), rgba(var(--primary-rgb), 0.08));
    position: relative;
    overflow: hidden;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding: 0 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: calc(var(--item-index) * 0.2s);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.about-team {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03), rgba(var(--primary-rgb), 0.08));
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding: 0 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.member-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-social {
    position: absolute;
    top: 20px;
    right: -50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: right 0.3s ease;
}

.team-member:hover .member-social {
    right: 20px;
}

.member-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-decoration: none;
}

.member-social a:hover {
    transform: translateX(-5px);
}

.member-social a.facebook:hover {
    background: #4267B2;
    color: white;
}

.member-social a.twitter:hover {
    background: #1DA1F2;
    color: white;
}

.member-social a.linkedin:hover {
    background: #0077B5;
    color: white;
}

.member-social a.instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
}

.member-info {
    padding: 25px;
    text-align: center;
    position: relative;
}

.member-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.team-member:hover .member-info::before {
    width: 100px;
}

.member-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.member-info span {
    display: block;
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.member-info p {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .team-member-h{
        display: none;
    }
}

@media (max-width: 768px) {
    .about-team {
        padding: 80px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
    }
    
    .member-image {
        height: 400px;
    }
    .team-member-h{
        display: none;
    }
}

@media (max-width: 480px) {
    .member-image {
        height: 350px;
    }
    
    .member-info {
        padding: 20px 15px;
    }
    
    .member-social a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Enhanced Responsive Styles */
@media (max-width: 1200px) {
    .about-hero-content h1 {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .about-hero-content h1 {
        font-size: 3.5rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .overview-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 75vh;
    }
    
    .about-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .about-hero-content p {
        font-size: 1.1rem;
    }
    
    .overview-content h2 {
        font-size: 2.5rem;
    }
    
    .company-highlights,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .value-card,
    .team-member {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2.3rem;
    }
    
    .about-hero-content p {
        font-size: 1rem;
    }
    
    .overview-content h2 {
        font-size: 2rem;
    }
    
    .highlight-item,
    .value-card {
        padding: 25px 20px;
    }
}

.about-achievements {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--primary-rgb), 0.02));
    position: relative;
    overflow: hidden;
}

.about-achievements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/patterns/dot-pattern.png');
    opacity: 0.04;
    animation: floatBg 20s linear infinite;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 20px;
}

.achievement-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: calc(var(--delay, 0) * 0.2s);
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.achievement-card:hover::before {
    transform: scaleX(1);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.3);
}

.achievement-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    filter: blur(15px);
    opacity: 0.5;
    z-index: -1;
}

.achievement-icon i {
    font-size: 35px;
    color: #fff;
    animation: pulseIcon 2s infinite;
}

.achievement-content {
    position: relative;
}

.achievement-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin-bottom: 10px;
}

.achievement-text {
    color: #636e72;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.achievement-bar {
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.achievement-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: shimmer 2s infinite;
}

@keyframes pulseIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes shimmer {
    100% { left: 100%; }
}

@keyframes floatBg {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@media (max-width: 992px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-achievements {
        padding: 70px 0;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
    }
    
    .achievement-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .achievement-card {
        padding: 30px 20px;
    }
    
    .achievement-icon {
        width: 70px;
        height: 70px;
    }
    
    .achievement-icon i {
        font-size: 28px;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
}


.about-cta {
    padding: 150px 0;
    background: linear-gradient(135deg, 
        rgba(13, 17, 23, 0.85), 
        rgba(9, 132, 227, 0.90)),
        url('../images/about/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.3);
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.cta-subtitle {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.cta-content h2 {
    color: #fff;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 5px 20px rgba(0,0,0,0.3);
    background: linear-gradient(to right, #fff, #a8e6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content p {
    color: rgba(255,255,255,0.95);
    font-size: 1.3rem;
    margin-bottom: 50px;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cta-buttons-about {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-button i {
    transition: transform 0.4s ease;
    font-size: 1.2rem;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cta-button:hover i {
    transform: translateX(8px);
}

.cta-shapes .shape {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 15%;
    left: 8%;
    animation: floatShape 15s infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 8%;
    animation: floatShape 20s infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 45%;
    left: 45%;
    animation: floatShape 12s infinite 2s;
}

@media (max-width: 992px) {
    .about-cta {
        padding: 100px 0;
    }

    .cta-content h2 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .about-cta {
        padding: 80px 0;
        background-attachment: scroll;
    }

    .cta-content h2 {
        font-size: 2.8rem;
    }

    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }

    .shape-1, .shape-2 {
        width: 100px;
        height: 100px;
    }

    .shape-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-subtitle {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .cta-button {
        padding: 14px 25px;
        font-size: 1rem;
    }
}



/* Services Page Start */
.services-page-hero {
    position: relative;
    min-height: 100vh;
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #0c1016 0%, #1a237e 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(25, 32, 45, 0.7), rgba(13, 17, 23, 0.95));
}

.services-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    filter: blur(60px);
    opacity: 0.15;
    animation: servicesShapeFloat 20s infinite;
}

.services-shape-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

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

.services-shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

.services-hero-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    animation: servicesContentFadeIn 1s ease forwards 0.5s;
}

.services-hero-tag {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(30px);
    opacity: 0;
    animation: servicesFadeInUp 0.6s ease forwards 0.7s;
}

.services-hero-wrapper h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 30px;
    transform: translateY(30px);
    opacity: 0;
    animation: servicesFadeInUp 0.6s ease forwards 0.9s;
}

.services-highlight {
    background: linear-gradient(to right, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.services-hero-wrapper p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
    transform: translateY(30px);
    opacity: 0;
    animation: servicesFadeInUp 0.6s ease forwards 1.1s;
}

.services-hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    transform: translateY(30px);
    opacity: 0;
    animation: servicesFadeInUp 0.6s ease forwards 1.3s;
}

.services-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
}

.services-btn-primary {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    color: #fff;
    box-shadow: 0 15px 30px rgba(79, 172, 254, 0.3);
}

.services-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-btn:hover {
    transform: translateY(-5px);
}

.services-btn-primary:hover {
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.4);
}

.services-btn i {
    transition: transform 0.3s ease;
}

.services-btn:hover i {
    transform: translateX(5px);
}

.services-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transform: translateY(30px);
    opacity: 0;
    animation: servicesFadeInUp 0.6s ease forwards 1.5s;
}

.services-stat-item {
    text-align: center;
}

.services-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-stat-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

@keyframes servicesShapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(0, 40px) rotate(180deg);
    }
    75% {
        transform: translate(-20px, -20px) rotate(270deg);
    }
}

@keyframes servicesContentFadeIn {
    to {
        opacity: 1;
    }
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .services-hero-wrapper h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .services-page-hero {
        padding: 120px 0 80px;
    }

    .services-hero-wrapper h1 {
        font-size: 2.8rem;
    }

    .services-hero-wrapper p {
        font-size: 1.1rem;
    }

    .services-hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .services-btn {
        width: 100%;
        justify-content: center;
    }

    .services-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .services-hero-wrapper h1 {
        font-size: 2.3rem;
    }

    .services-hero-tag {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .services-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
}


.services-overview-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03), rgba(var(--primary-rgb), 0.07));
    position: relative;
    overflow: hidden;
}

.services-overview-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    opacity: 0;
    animation: servicesHeaderFade 1s ease forwards;
}

.services-overview-subtitle {
    display: inline-block;
    padding: 8px 25px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.2));
    border-radius: 30px;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.services-overview-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.services-overview-header p {
    font-size: 1.2rem;
    color: #636e72;
    line-height: 1.8;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-overview-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: servicesCardFade 0.8s ease forwards;
}

.services-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.services-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.services-overview-card:hover .services-card-icon {
    transform: rotateY(180deg);
}

.services-card-icon i {
    font-size: 2rem;
    color: #fff;
}

.services-card-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.services-card-content p {
    color: #636e72;
    line-height: 1.7;
    margin-bottom: 25px;
}

.services-features-list {
    list-style: none;
    margin-bottom: 30px;
}

.services-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #636e72;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.services-features-list i {
    color: var(--primary-color);
    font-size: 1rem;
}

.services-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.services-card-btn:hover {
    gap: 15px;
}

.services-card-btn i {
    transition: transform 0.3s ease;
}

.services-card-btn:hover i {
    transform: translateX(5px);
}

@keyframes servicesHeaderFade {
    to {
        opacity: 1;
    }
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-overview-header h2 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .services-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-overview-section {
        padding: 80px 0;
    }

    .services-overview-header h2 {
        font-size: 2.5rem;
    }

    .services-overview-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .services-overview-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .services-overview-header h2 {
        font-size: 2rem;
    }

    .services-card-icon {
        width: 60px;
        height: 60px;
    }

    .services-card-icon i {
        font-size: 1.5rem;
    }

    .services-card-content h3 {
        font-size: 1.5rem;
    }
}


.services-why-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0c1016 0%, #1a237e 100%);
    position: relative;
    overflow: hidden;
}

.services-why-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.services-why-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    filter: blur(50px);
}

.shape1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -100px;
    animation: rotateShape 20s linear infinite;
}

.shape2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -50px;
    animation: floatShape 15s ease-in-out infinite;
}

.services-why-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.services-why-subtitle {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.services-why-header h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a8e6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-why-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
}

.services-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.services-why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.services-why-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.services-why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.services-why-icon i {
    font-size: 2rem;
    color: #fff;
    position: relative;
    z-index: 2;
}

.icon-blur {
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(15px);
    opacity: 0.5;
    z-index: 1;
}

.services-why-card h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.services-why-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.services-why-hover {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.2;
    transition: all 0.3s ease;
}

.hover-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
}

.services-why-card:hover .services-why-hover {
    opacity: 0.4;
    transform: scale(1.2);
}

.services-why-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-counter {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #a8e6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item h4 {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.stat-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.stat-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    animation: fillBar 2s ease forwards;
}

@keyframes rotateShape {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

@keyframes fillBar {
    to { width: 100%; }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-why-header h2 {
        font-size: 3rem;
    }
    
    .services-why-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-why-section {
        padding: 80px 0;
    }

    .services-why-header h2 {
        font-size: 2.5rem;
    }

    .services-why-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 60px;
    }

    .services-why-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .services-why-header h2 {
        font-size: 2rem;
    }

    .services-why-card {
        padding: 30px 20px;
    }

    .stat-counter {
        font-size: 2.8rem;
    }
}


.services-process-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a1118 0%, #1a237e 100%);
    position: relative;
    overflow: hidden;
}

.services-process-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.process-blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: rgba(79, 172, 254, 0.1);
    top: -100px;
    right: -100px;
    animation: floatCircle 15s infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: rgba(0, 242, 254, 0.1);
    bottom: -50px;
    left: -50px;
    animation: floatCircle 20s infinite reverse;
}

.services-process-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 2;
}

.services-process-subtitle {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.services-process-header h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a8e6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

.services-process-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

.services-process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.services-process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.2) 15%,
        rgba(255,255,255,0.2) 85%,
        rgba(255,255,255,0) 100%);
}

.process-step {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: stepFadeIn 0.8s ease forwards;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 0 30px rgba(79, 172, 254, 0.3);
}

.step-content {
    width: calc(50% - 50px);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
}

.step-content:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.step-icon i {
    font-size: 2rem;
    color: #fff;
    z-index: 1;
}

.icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    animation: pulseRing 2s infinite;
}

.step-content h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.7;
}

.step-features {
    list-style: none;
}

.step-features li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-features i {
    color: #4facfe;
    font-size: 1.1rem;
}

.services-process-cta {
    margin-top: 100px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.process-cta-content h3 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.process-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.process-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    border-radius: 50px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s ease;
    text-decoration: none;
}

.process-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.3);
}

@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(180deg); }
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 0.4; }
    100% { transform: scale(1); opacity: 0.8; }
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-process-timeline {
        max-width: 900px;
    }
}

@media (max-width: 992px) {
    .services-process-header h2 {
        font-size: 3rem;
    }

    .services-process-timeline::before {
        left: 30px;
    }

    .process-step {
        flex-direction: row !important;
        justify-content: flex-start !important;
    }

    .step-number {
        left: 30px;
        transform: translateX(-50%);
    }

    .step-content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }

    .services-process-cta {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .services-process-section {
        padding: 80px 0;
    }

    .services-process-header h2 {
        font-size: 2.5rem;
    }

    .step-content {
        padding: 30px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon i {
        font-size: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.5rem;
    }

    .process-cta-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-process-header h2 {
        font-size: 2rem;
    }

    .step-content {
        padding: 25px;
        margin-left: 60px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .process-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 30px;
    }
}



/* Contact Page Start */
.contact-hero-wrapper {
    position: relative;
    min-height: 100vh;
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #0a1118 0%, #1a237e 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(25, 32, 45, 0.7), rgba(13, 17, 23, 0.95));
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    filter: blur(80px);
    opacity: 0.15;
}

.contact-shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    animation: contactShapeFloat 20s infinite;
}

.contact-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: contactShapeFloat 25s infinite reverse;
}

.contact-shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: contactShapeFloat 15s infinite;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero-tag {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(30px);
    opacity: 0;
    animation: contactFadeInUp 0.6s ease forwards 0.2s;
}

.contact-hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 30px;
    transform: translateY(30px);
    opacity: 0;
    animation: contactFadeInUp 0.6s ease forwards 0.4s;
}

.contact-highlight {
    background: linear-gradient(to right, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.contact-hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(30px);
    opacity: 0;
    animation: contactFadeInUp 0.6s ease forwards 0.6s;
}

.contact-hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    transform: translateY(30px);
    opacity: 0;
    animation: contactFadeInUp 0.6s ease forwards 0.8s;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-card-icon i {
    font-size: 2rem;
    color: #fff;
    z-index: 1;
}

.contact-icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    animation: contactPulseRing 2s infinite;
}

.contact-info-card h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-card-time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@keyframes contactShapeFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(180deg); }
}

@keyframes contactPulseRing {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 0.4; }
    100% { transform: scale(1); opacity: 0.8; }
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .contact-hero-content h1 {
        font-size: 3.8rem;
    }
}

@media (max-width: 992px) {
    .contact-hero-content h1 {
        font-size: 3rem;
    }

    .contact-hero-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .contact-hero-wrapper {
        padding: 120px 0 80px;
    }

    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-hero-content p {
        font-size: 1.1rem;
    }

    .contact-hero-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .contact-info-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .contact-hero-tag {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .contact-card-icon {
        width: 60px;
        height: 60px;
    }

    .contact-card-icon i {
        font-size: 1.5rem;
    }
}

.contact-form-wrapper {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0a1118 0%, #1a237e 100%);
    overflow: hidden;
}

.contact-form-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-form-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    opacity: 0.1;
    filter: blur(100px);
}

.shape-left {
    width: 500px;
    height: 500px;
    top: -100px;
    left: -100px;
    animation: shapeFloat 20s infinite;
}

.shape-right {
    width: 400px;
    height: 400px;
    bottom: -50px;
    right: -50px;
    animation: shapeFloat 25s infinite reverse;
}

.contact-form-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(79, 172, 254, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-form-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.contact-form-content {
    padding-right: 50px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-tag {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: #4facfe;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(79, 172, 254, 0.2);
}

.contact-form-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-form-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-features {
    display: grid;
    gap: 20px;
}

.contact-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.contact-feature-item i {
    font-size: 1.2rem;
    color: #4facfe;
}

.contact-feature-item span {
    color: #fff;
    font-size: 1rem;
}

.contact-form {
    display: grid;
    gap: 35px;
    position: relative;
    background-color: #222E47;
}

.form-group-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.form-field {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-field:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(79, 172, 254, 0.3);
    transform: translateY(-2px);
}

.form-field:focus-within {
    background: rgba(255, 255, 255, 0.07);
    border-color: #4facfe;
    box-shadow: 0 0 30px rgba(79, 172, 254, 0.2);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 20px 25px 20px 60px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.form-field select {
    appearance: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding-right: 50px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.form-field select option {
    background: #1a237e;
    color: #fff;
    padding: 15px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-field select option:hover {
    background: rgba(79, 172, 254, 0.2);
}

.form-field select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.07);
}

/* Custom dropdown arrow */
.form-field:has(select)::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #4facfe;
    font-size: 1.2rem;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.form-field:has(select:focus)::after {
    transform: translateY(-50%) rotate(180deg);
    color: #4facfe;
}

/* Service input styling */
.form-field:has(select) {
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(79, 172, 254, 0.2);
}

.form-field:has(select):hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(79, 172, 254, 0.3);
}

.form-field:has(select):focus-within {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4facfe;
    box-shadow: 0 0 30px rgba(79, 172, 254, 0.15);
}

/* Dropdown menu animation */
.form-field select:focus option {
    animation: optionFadeIn 0.2s ease forwards;
}

@keyframes optionFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-field textarea {
    height: 180px;
    resize: none;
    line-height: 1.6;
}

.form-field i {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #4facfe;
    font-size: 1.4rem;
    pointer-events: none;
}

.form-field textarea + i {
    top: 25px;
    transform: none;
}

.form-field select + i {
    right: 25px;
    left: auto;
}

/* Add a custom dropdown arrow */
.form-field select:required:invalid {
    color: rgba(255, 255, 255, 0.6);
}

.form-field:has(select)::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #4facfe;
    pointer-events: none;
}

.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.file-label i {
    font-size: 2.5rem;
    color: #4facfe;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.file-field:hover .file-label i {
    transform: translateY(-5px) scale(1.1);
}

.file-label span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 500;
}

.file-label small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 22px 45px;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    border: none;
    border-radius: 30px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.6s;
}

.contact-submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.4),
                0 0 20px rgba(79, 172, 254, 0.2);
}

.contact-submit-btn:hover::before {
    left: 100%;
}

.contact-submit-btn i {
    font-size: 1.4rem;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-submit-btn:hover i {
    transform: translateX(8px);
}

/* Form Validation Styles */
.form-field.error {
    border-color: #ff4757;
    animation: formShake 0.5s ease;
}

.error-message {
    color: #ff4757;
    font-size: 0.9rem;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 25px;
    opacity: 0;
    animation: errorFadeIn 0.3s ease forwards;
}

@keyframes formShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

@keyframes errorFadeIn {
    to { opacity: 1; }
}
@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(180deg); }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .contact-form-container {
        max-width: 90%;
        padding: 40px;
    }

    .contact-form-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-content {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 40px;
        text-align: center;
    }

    .contact-features {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 80px 0;
    }

    .form-group-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 30px;
    }

    .contact-form-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 20px;
    }

    .contact-feature-item {
        padding: 12px 15px;
    }

    .contact-submit-btn {
        width: 100%;
        padding: 15px 30px;
    }
}



.file-field-attachment {
    padding: 35px 30px;
    text-align: center;
    border: 2px dashed rgba(79, 172, 254, 0.3);
    border-radius: 16px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.file-field-attachment:hover {
    border-color: #4facfe;
    background: rgba(79, 172, 254, 0.08);
    transform: translateY(-2px);
}

.file-label-attachment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.file-label-attachment i {
    font-size: 2.8rem;
    color: #4facfe;
    margin-bottom: 5px;
    transition: all 0.4s ease;
}

.file-label-attachment span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.file-label-attachment small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive styles for file attachment */
@media (max-width: 768px) {
    .file-field-attachment {
        padding: 25px 20px;
    }

    .file-label-attachment i {
        font-size: 2.2rem;
        display: none;
    }

    .file-label-attachment span {
        font-size: 1rem;
    }

    .file-label-attachment small {
        font-size: 0.85rem;
        padding: 5px 12px;
    }
}

@media (max-width: 480px) {
    .file-field-attachment {
        padding: 20px 15px;
    }

    .file-label-attachment {
        gap: 8px;
    }

    .file-label-attachment i {
        font-size: 2rem;
        margin-bottom: 3px;
        display: none;
    }

    .file-label-attachment span {
        font-size: 0.95rem;
    }

    .file-label-attachment small {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
}




.contact-benefits-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0a1118 0%, #1a237e 100%);
    overflow: hidden;
}

.benefits-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.benefits-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    opacity: 0.15;
    filter: blur(80px);
}

.shape-pulse {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    animation: shapePulse 8s ease-in-out infinite;
}

.shape-float {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: shapeFloat 15s ease-in-out infinite;
}

.benefits-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(79, 172, 254, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.benefits-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 80px;
}

.benefits-badge {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: #4facfe;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(79, 172, 254, 0.2);
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.benefits-header h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

.benefits-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
    margin-bottom: 100px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.benefit-card:hover {
    transform: translateY(-15px);
    border-color: rgba(79, 172, 254, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.benefit-card:hover::before {
    transform: translateX(100%);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.benefit-icon i {
    font-size: 2.5rem;
    color: #fff;
    z-index: 1;
}

.icon-glow {
    position: absolute;
    inset: -5px;
    background: inherit;
    border-radius: inherit;
    filter: blur(15px);
    opacity: 0.5;
    animation: iconPulse 2s ease-in-out infinite;
}

.benefit-card h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.benefit-stats {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.benefits-showcase {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
}

.showcase-content h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.showcase-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.showcase-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.showcase-stat {
    text-align: center;
}

.showcase-stat .counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4facfe;
    display: block;
    margin-bottom: 5px;
}

.showcase-stat span:last-child {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    border-radius: 50px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
}

.showcase-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.3);
}

.showcase-btn i {
    transition: transform 0.3s ease;
}

.showcase-btn:hover i {
    transform: translateX(5px);
}

.brand-scroll {
    display: flex;
    gap: 30px;
    animation: brandScroll 20s linear infinite;
}

.brand-scroll img {
    height: 40px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.brand-scroll img:hover {
    opacity: 1;
}

@keyframes shapePulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(180deg); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

@keyframes brandScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .benefits-header h2 {
        font-size: 3rem;
    }
    
    .benefits-grid {
        gap: 20px;
    }
    
    .benefits-showcase {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .showcase-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-benefits-section {
        padding: 80px 0;
    }
    
    .benefits-header h2 {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 60px;
    }
    
    .benefit-card {
        padding: 30px;
    }
    
    .showcase-content h2 {
        font-size: 2.2rem;
    }
    
    .showcase-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .benefits-header h2 {
        font-size: 2rem;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
    }
    
    .benefit-icon i {
        font-size: 2rem;
    }
    
    .benefit-card h3 {
        font-size: 1.5rem;
    }
    
    .benefits-showcase {
        padding: 30px 20px;
    }
}



/* portfolio  */

/* Portfolio Premium Design */
/* Premium Portfolio Section */
.portfolio-premium-container {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .portfolio-premium-title h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .portfolio-premium-title p {
    font-size: 18px;
    color: #777;
    margin-bottom: 40px;
  }
  
  .portfolio-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .portfolio-premium-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .portfolio-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  }
  
  .portfolio-premium-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .portfolio-premium-content {
    padding: 20px;
  }
  
  .portfolio-premium-content h3 {
    font-size: 22px;
    color: #222;
    margin-bottom: 8px;
  }
  
  .portfolio-premium-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
  }
  
  .portfolio-premium-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4c8bf5;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .portfolio-premium-btn:hover {
    background-color: #3067d6;
  }
  

/* Privacy Policy */

/* Premium Privacy Policy Styling for Websoft Code Digital Services */

.privacy-premium-container {
    padding: 60px 20px;
    background-color: #f9f9f9;
    max-width: 900px;
    margin: auto;
  }
  
  .privacy-premium-title {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .privacy-premium-title h1 {
    font-size: 42px;
    color: #333;
    font-weight: 700;
  }
  
  .privacy-premium-title p {
    font-size: 16px;
    color: #888;
  }
  
  .privacy-premium-content h2 {
    font-size: 26px;
    color: #222;
    margin-top: 30px;
    border-left: 4px solid #4c8bf5;
    padding-left: 10px;
  }
  
  .privacy-premium-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
  }
  
  .privacy-premium-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
  }
  
  .privacy-premium-content ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    list-style-type: disc;
  }
  