/* Global Styles */
:root {
    --primary-color: #ff6b9e; /* Pink */
    --secondary-color: #6b66ff; /* Purple */
    --accent-color: #66b3ff; /* Blue/Water */
    --dark-color: #4a4a8a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Poppins, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #E5F5FF;
    letter-spacing: 1.1px;
}

.container {
     max-width: 1200px;
     margin: auto;
     padding: 0 10px;
}

/* which i change */

 .container1 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px;
            position: relative;
            border-radius: 3px;
            border: 1px solid #3498db;
            z-index: 2;
        }

.logo-container {
            width: 180px;
            height: 180px;
            background: white;
            border-radius: 50%;
            padding: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 5px solid #e74c3c;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .logo-container img {
            max-width: 100%;
            max-height: 100%;
        }
        .photo-container {
            width: 220px;
            height: 220px;
            border-radius: 50%;
            border: 5px solid #3498db;
            padding: 5px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .photo-container img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        .profile-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 30px;
        }

 .language-tabs {
            display: flex;
            justify-content: center;
            margin: 20px 0 30px;
        }
        
        .tab-btn {
            padding: 15px 40px;
            font-size: 1.2rem;
            background: #3498db;
            color: white;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 0;
            font-weight: 600;
        }
        
        .tab-btn:first-child {
            border-radius: 8px 0 0 8px;
        }
        
        .tab-btn:last-child {
            border-radius: 0 8px 8px 0;
        }
        
        .tab-btn.active {
            background: #e74c3c;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .bio-section {
            background: rgba(255, 255, 255, 0.92);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .bio-content {
            display: none;
        }
        
        .bio-content.active {
            display: block;
            animation: fadeIn 0.8s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .bio-content h3 {
            text-align: center;
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #3498db;
            position: relative;
        }
        
        .bio-content h3:after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #e74c3c;
        }
        
        .bio-content p {
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 20px;
            text-align: justify;
        }
        
        .hindi {
            font-family: 'Nirmala UI', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            direction: ltr;
            font-size: 1.25rem;
        }
        
        .hindi p {
            text-align: right;
        }
        
        .qualities-section {
            background: rgba(255, 255, 255, 0.92);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .qualities-section h3 {
            text-align: center;
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: -10px;
            padding-bottom: 10px;
            position: relative;
        }
        
        .qualities-section h3:after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #e74c3c;
        }
        
        .qualities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .quality-card {
            background: linear-gradient(135deg, #3498db, #2c3e50);
            color: white;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .quality-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .quality-card i {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #e74c3c;
        }
        
        .quality-card h4 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .quality-card p {
            font-size: 1.05rem;
            line-height: 1.6;
        }

/* befor all change */

a {
    text-decoration: none;
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 0 5px 0 5px ;
}

.btn:hover {
  background-color: #e0558c;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #e0558c;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #5a55e0;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo h1 {
    font-size: 1.8rem;
    background: linear-gradient(to right, white, #f0f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 20px;
}

.main-nav ul li a{
    color: white;
    font-weight: 500;
    font-size: 18px; !important;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main-nav ul li a i {
    margin-right: 5px;
}

.main-nav ul li a:hover {
    color: lime;
    transform: scale(1.05);
    transition: 0.2s ease;
    
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

 /* Carousel Styles */
        .header-carousel {
            margin-top: -1px; /* Remove gap between navbar and carousel */
        }
        
        .header-carousel .carousel-item {
            height: auto%;
        }
        
        .header-carousel .carousel-item img {
            object-fit: cover;
            height: auto%;
            width: 100%;
        }
        
      

        .carousel-container {
          max-width: 100%;
          overflow: hidden;
        }

        .carousel-slide {
          display: flex;
          flex-wrap: nowrap;
        }


        
/* Hero Section */


.hero {
    background: url('hero-section-bg.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: left;
    padding: 50px 50px;
    gap: 30px;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.1rem;
    color: black;
    margin-bottom: 25px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    width: 250px;
   /* border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.product1-card {
   
    color: #7467fa;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.feature-card:hover {

}

.feature-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.CardMar h2{
margin-bottom: 1.5rem ;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, var(--dark-color), #2a2a5a);
    color: white;
    padding: 20px 0 0;
    align-content: center;
}


.footer-section a {
    margin: 0;
    padding: 0;
    color: white;
    margin-top: 5px;
}

hr {
   border-color: rgba(0, 153, 0, .8);
   margin-bottom: 5px;
  
}

.SocialM i{
    margin: 15px 12px 0 0;
    font-size: 1.9em;
}

.SocialM i:hover {
 
  color: lime;" 
}

.containerF {

    display: flex;
    justify-content: center;
    flex-wrap:inherit ;
    gap: 20px;
}

.footer-section {
    height: auto; 
    width: 250px; /* Ensures columns stack neatly on smaller screens */
    margin: 0 30px;
}

.footer-section h3 {
    margin-bottom: 8px;
    font-size: 20px;
    color: yellow;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ccc;
}

.footer-section p {
    margin: 8px 0;
    font-size: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: white;
    font-size: 22px;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.3);
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid #9667e2;
    font-size: 18px;
    color: white;
}

.copyright a{
   color: lime;
   font-style: italic;
}

.footer-links a:hover{
    color: lime;
   font-style: bold;
}





/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
       .main-nav ul.show {
        display: flex;
    }
  
    .main-nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
        color: white;
    }
    
    header .container {
        flex-wrap: wrap;
    }
}

@media (max-width: 1019px) {


        .main-nav ul {
        display: none;
        position: absolute;
        font-size: 20px; !important;
        top: 70px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

   .main-nav ul.show {
        display: flex;
    }
  
    .main-nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
        color: white;
    }
    
    header .container {
        flex-wrap: wrap;
    }

   
}


@media (max-width: 768px) {
    .main-nav ul {
        display: none;
        position: absolute;
        font-size: 20px; !important;
        top: 70px;
        left: 0;
        width: 40%;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .carousel img {
    height: 300px;
    }
    



    .main-nav ul.show {
        display: flex;
    }
  
    .main-nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
        color: white;
    }
    
    header .container {
        flex-wrap: wrap;
    }

    .footer-section {
    height: auto; 
    width: 100%; /* Ensures columns stack neatly on smaller screens */
    font-size: 18px;
    }

    .footer-section p{
    font-size: 18px;
    }

    .footer-section h3{
    font-size: 30px;
    margin-top: 40px;
    }

    .footer-section hr{
      width: 100%;
    }

    .title1 h2{
        font-size: 10px;
    }

    footer a{
    flex-wrap: wrap;
    text-align: center;
    }

}

.copyright{
    height: auto; 
    width: 100%; /* Ensures columns stack neatly on smaller screens */

}

    footer .containerF{
     flex-wrap: wrap;
     text-align: center;
    }
}

@media (max-width: 576px) {
    
    .hero-content h2 {
        font-size: 5px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }

    .footer-section {
    height: auto; 
    width: 100%; /* Ensures columns stack neatly on smaller screens */
    font-size: 18px;
    }

    .footer-section p{
    font-size: 18px;
    }

    .footer-section h3{
    font-size: 35px;
    }

    footer {
     flex-wrap: wrap;
    text-align: center;

    }

    .product1-card{
        width: auto;
        margin: 40px;
        padding: 20px;
    }

     .copyright{
    height: auto; 
    width: 100%; /* Ensures columns stack neatly on smaller screens */

}

}
/* फॉर्म स्टाइलिंग */
form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input[type="text"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.error {
    color: #ff4444;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

button[type="submit"] {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #e0558c;
}

.products-grid{

    display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px;
}

.product-card{
border: 1px solid #ddd; padding: 15px; border-radius: 5px;
}

.product-image { max-width: 100%; height: auto; margin-bottom: 10px; }

.product-name { font-weight: bold; font-size: 1.2em; margin-bottom: 5px; }