/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
.camc {
    background-color: #d6e4ea;
    padding-left: 50px;
    padding-top: 10px;
    font-family: "DynaPuff", serif;
    font-weight: 500;  /* You can use 400, 500, 600, or 700 */
    font-style: normal;
    font-optical-sizing: auto;
    font-variation-settings: "wdth" 100;
    font-size: 4.5rem;
}
.sp{
    font-size: 7rem;
    color: #8800ff;
    padding-left: 50px;
    padding-top: 10px;
    font-family: "DynaPuff", serif;
    font-weight: 500;  /* You can use 400, 500, 600, or 700 */
    font-style: normal;
    font-optical-sizing: auto;
    font-variation-settings: "wdth" 100;
}

.mai {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #d6e4ea;
    padding: 20px;
    margin-top: -150px;
}

.container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.text-content1 {
    max-width: 700px;
    
}

.text-content1 h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
}

.text-content1 p {
    font-size: 1.1rem;
    margin-top: 10px;
    color: #333;
}

.buttons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    flex-direction: row;
}

.buttons a {
    display: inline-block;
    padding: 12px 20px;
    margin-right: 10px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    border-radius: 5px;
}

.app-store {
    background-color: #000;
}

.google-play {
    background-color: #4285F4;
}

.mobile-image {
    max-width: 350px;
    width: 100%;
}

.mobile-image img {
    width: 100%;
    height: 650px;
    border-radius: 20px;
    /* box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2); */
}

/* Responsive Design */
@media (max-width: 900px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .mobile-image {
        order: -1;
    }
}

/* Content */
.content {
    max-width: 600px;
    animation: slideIn 1.5s ease-in-out;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
}

p {
    font-size: 1.1rem;
    margin: 20px 0;
}

/* Highlighted Text */
.highlight {
    background: #8800ff;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 5px;
    animation: highlightFade 2s infinite alternate;
}

/* Button */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #8800ff;
    color: black;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

/* Button Hover Effect */
.btn:hover {
    transform: scale(1.1);
    background: #8800ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    h1 {
        font-size: 2rem;
    }
    .illustration img {
        width: 300px;
    }
    .sp{
        font-size: 5rem;
        color: #8800ff;
        margin-top: -40px;
    }
    .mobile-image img {
        margin-top: -135px;}
        .camc{
            margin-bottom: 80px;
        }
        .buttons {
           
            display: flex;
            gap: 20px;
            flex-direction: column;
        }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes highlightFade {
    from { background: #8800ff; }
    to { background: #c8a0e6; }
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.two {
    background: #fff;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
   
    
} 

/* About Section */
.about-section {
    background: #f5e1fc;
    
    display: flex
;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    /* max-width: 1251px; */
    padding: 40px;
    gap: 30px;
    width: 100%;
}

/* Content */
.about-content {
    max-width: 600px;
    animation: slideInLeft 1.5s ease-out;
    margin-left: 0px;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.about-content p {
    font-size: 1.1rem;
    margin: 20px 0;
    line-height: 1.6;
}

/* Highlighted Text */
.highlights {
    background: white;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 5px;
    animation: highlightFade 2s infinite alternate;
}

/* Illustration */
.about-illustration img {
    max-width: 100%;
    width: 700px;
    animation: bounceIn 2s ease-out;
    
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-illustration img {
        width: 300px;
        display: none;
    }
    .camc {
        background-color: #d6e4ea;
   
    padding-bottom: 176px;
    display: flex
;
    justify-content: center;
    padding-top: 30px;
    padding-left: 0px;
    font-size: 2.5rem;
    margin-left: -45px;
    }
}

/* Animations */
@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes bounceIn {
    0% { transform: scale(0.8); opacity: 0; }
    60% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}

/* @keyframes highlightFade {
    from { background: #fff; }
    to { background: #ffebff; }
} */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.tre {
    background: #fff;
    color: #000;
    
}

/* Section */
.work-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 34px 20px;
}

.work-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

.work-header p {
    font-size: 1.1rem;
    margin: 10px 0 30px;
    line-height: 1.6;
    color: #444;
}

/* Work Cards */
.work-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.work-card {
    background: #fff;
    border: 2px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    animation: fadeIn 1.5s ease-out;
}

.work-card:hover {
    transform: translateY(-10px);
}

/* Video Container */
.video-container {
    position: relative;
    overflow: hidden;
}

.video-container img {
    width: 100%;
    display: block;
    border-bottom: 2px solid #eaeaea;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .play-overlay {
    opacity: 1;
}

.play-button {
    font-size: 2.5rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 15px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.video-container:hover .play-button {
    transform: scale(1.1);
}

/* Card Title */
.work-card h3 {
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
}

/* Highlighted Text */
.highlight {
    color: #6a0dad;
    text-decoration: underline;
    animation: colorPulse 2s infinite alternate;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes colorPulse {
    from { color: #6a0dad; }
    to { color: #9e4ed9; }
}

/* Responsive */
@media (max-width: 600px) {
    .work-header h2 {
        font-size: 2rem;
    }

    .work-card h3 {
        font-size: 1rem;
    }

    .play-button {
        font-size: 2rem;
    }
}
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.fbs {
    background: #b8ff79;
    color: #000;
    padding: 20px;
   
    align-items: center;
    justify-content: center;
    display: flex;
}

/* Section */
.feedback-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 20px;
}

.feedback-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-decoration-color: #fff;
    display: inline-block;
    animation: textGlow 2s infinite alternate;
    margin-bottom: 30px;
}

/* Feedback Cards */
.feedback-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feedback-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1.5s ease-out;
}

.feedback-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

/* Client Image */
.feedback-card img {
    width: 150px;
    height: 150px;
    border-radius: 11px;
    object-fit: cover;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.feedback-card:hover img {
    transform: scale(1.1);
}

/* Feedback Text */
.feedback-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin: 10px 0 15px;
}

/* Client Name */
.feedback-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

/* Client Company */
.feedback-card span {
    font-size: 1.5rem;
    color: #000000;
    font-weight: bold;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes textGlow {
    from { text-shadow: 0 0 10px #fff; }
    to { text-shadow: 0 0 20px #fff, 0 0 30px #ffe; }
}

/* Responsive */
@media (max-width: 600px) {
    .feedback-header h2 {
        font-size: 2rem;
    }

    .feedback-card p {
        font-size: 0.85rem;
    }
}
.news-section {
    padding: 50px;
    text-align: center;
}
.news-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}
.news-title::after {
    content: "";
    width: 100%;
    height: 10px;
    background: #d6b5f7;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.news-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.news-card {
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    max-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
.read-more {
    background: #74e468;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.read-more:hover {
    background: #56b94e;
}
@media (max-width: 768px) {
    .news-cards {
        flex-direction: column;
        align-items: center;
    }
}
.cs {
    font-family: Arial, sans-serif;
    background-color: #ffb885;
    display: flex;
    justify-content: center;
    align-items: center;
   padding-top: 25px;
   
   

}


.contact-section {
    background-color: #ffb885;
    
  
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.bx{
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    background-color: #ffff;
    
     
    max-width: 800px;
    width: 100%;
    padding: 20px;
    margin-bottom: 50px;
}
.contact-info, .contact-image {
    flex: 1 1 300px;
}

.contact-info h2 {
    color: #000;
}

.contact-info p {
    color: #555;
}

.contact-info a {
    display: inline-block;
    margin: 5px 0;
    text-decoration: none;
    color: #000;
}

.contact-info a:hover {
    color: #4caf50;
}

.contact-box {
    border: 2px solid #000;
    border-radius: 10px;
    padding: 10px;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
}

.contact-box span {
    font-weight: bold;
}


@media (max-width: 600px) {
    .contact-section {
        flex-direction: column;
    }
}
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #8b31ff;
    
}

.text-content {
    max-width: 50%;
}

.text-content h1 {
    font-size: 2.5rem;
    margin: 0;
}

.text-content h2 {
    font-size: 2rem;
    margin: 10px 0;
}

.text-content h3 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.download-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.download-btn {
    display: flex;
    align-items: center;
    background-color: #4285F4;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

.download-btn img {
    height: 30px;
    margin-right: 10px;
}

.download-btn span {
    text-align: left;
    line-height: 1.2;
}

.video-content {
    max-width: 50%;
}

video {
    width: 118%;
    border-radius: 10px;
   
    margin-left: -110px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }
    .download-btn {
       
        padding: 10px 85px;
    }

    .text-content {
        max-width: 100%;
        display: none;
    }

    .download-buttons {
        justify-content: center;
    }
     .video-content {
        max-width: 100%;
    }
    video{
        margin-left: -24px;
    }
}


.footer {
    background-color: #000;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.footer-logo {
    width: 50px;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 14px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f39c12;
}

/* Responsive Design */
@media (max-width: 600px) {
    .footer-links {
        flex-direction: column;
        gap: 5px;
    }
}
.nav__logo {
    display: inline-flex
;
    align-items: center;
    column-gap: 0.25rem;
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    transition: color 0.3s;
    margin-left: 80px;
    text-decoration: none;
    font-family: "DynaPuff", serif;
    font-weight: 500;  /* You can use 400, 500, 600, or 700 */
    font-style: normal;
    font-optical-sizing: auto;
    font-variation-settings: "wdth" 100;
}