:root {
    --primary-color: #2f2b77;
    --secondary-color: #ff6584;
    --accent-color: #36d1dc;
    --dark-color: #2a2a72;
    --light-color: #f8f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #2c286e !important;
    backdrop-filter: blur(10px);
    height: 40px;
}

.buy-btn {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    padding: 5px 15px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Hero Section */
.hero {
    padding: 95px 0 60px 0;
    position: relative;
    background: linear-gradient(to bottom, white, skyblue);

}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 80px;
    align-items: center;

}

.hero-text h1 {
   font-size: 46px;
    font-weight: 600;
    color: #2c286e;
    line-height: 1.1;
    padding-top: 90px;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(56, 56, 56, 0.3);
    letter-spacing: -2px;
}

.hero-text h1 .highlight {
    background: linear-gradient(45deg, #b8860b, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.author-info {
      color: #2c286e;
    font-size: 1.2rem;
    margin-bottom: 18px;
    font-weight: 400;
    font-size: 14px;
    padding: 0 10px;
}

.hero-btn {
        background: linear-gradient(45deg, #2c286e, #75240b);
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.4);
    margin-bottom: 20px;
    display: inline-block;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.5);
}

.availability {
    color: #2c286e;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.availability::before {
    content: '✓';
    color: #4CAF50;
    font-weight: bold;
}

/* Book Visual */
.books-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.books-stack {
    position: relative;
    width: 320px;
    height: 400px;
}

.book {
    position: absolute;
    width: 280px;
    height: 360px;
    background: linear-gradient(135deg, #4A4E7A 0%, #6366F1 100%);
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.book:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 3;
    transform: rotate(-5deg);
}

.book:nth-child(2) {
    top: 20px;
    left: 30px;
    z-index: 2;
    transform: rotate(8deg);
    opacity: 0.85;
}

.book:nth-child(3) {
    top: 40px;
    left: -20px;
    z-index: 1;
    transform: rotate(-12deg);
    opacity: 0.7;
}

.book-content {
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    text-align: center;
}

.book-logo {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.book-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.book-subtitle {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 30px;
    color: #ffffff;

}

.book-author {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.9;
}

.books-stack:hover .book:nth-child(1) {
    transform: rotate(-2deg) scale(1.05);
}


@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .book {
        width: 280px;
        height: 360px;
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }

    .book-content {
        padding: 40px 30px;
    }

    .book-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .book {
        width: 240px;
        height: 320px;
    }

    .book-title {
        font-size: 1.5rem;
    }
}

.rounded-circle {
    width: 40px;
    height: 40px;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-mystical {
    border: none;
    border-radius: 25px;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-mystical:hover {
    background: #2c286e;
    transform: scale(1.05);
}

.fade-in {
    animation: fadeInUp 1s ease-out;
}

.topics-section {
    padding: 60px 0;
    background: #ffffff;
    font-size: 1.2rem;
    background: linear-gradient(to bottom, #f1fdfb, skyblue);


}

.topics-section h2 span {
    color: #b8860b;
    text-shadow: #474747;
}

.topics-section ul {
    list-style: none;
    padding: 0;
}

.topics-section ul li {
    margin-bottom: 10px;
    font-size: 1rem;
	    margin-left: 25px;
}

.topics-section ul li::before {
    content: "✔";
    color: #3b82f6;
    font-weight: bold;
    margin-right: 8px;
}

.topics-section p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 20px;
}

.section-title {
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    margin-bottom: 10px !important;
    margin-top: -20px;
    font-size: 2.0rem !important;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title::after {
    display: none;
}


.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.why-section {
    background: linear-gradient(to bottom, white, skyblue);
    padding: 40px 0;
    text-align: center;
    color: #2c286e;
    font-size: 2.0rem;
    letter-spacing: 3px;
}

.why-section h2 span {
    color: #b8860b;
}

.subtitle-large {
  font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-top: 1.2px;
    text-transform: capitalize;
	
}
.feature{
	margin:5px  0;
}

.feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    width: auto;
    margin-bottom: 0px;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #b8860b;
    margin-bottom: 15px;
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 10px;

}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.feature-card i {
    transition: transform 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

.service-card {
   transition: all 0.4s ease;
    border: none;
    border-radius: 0;
    overflow: hidden;
    /* box-shadow: 1px 1px 8px rgb(44 40 110); */
    height: 100%;
    transition: transform 0.3s ease-in-out;
    /* background: linear-gradient(to bottom, white, #ffffff); */
    border: 2px solid #c9c9c9;
    padding: 7px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #2c286e !important;
    backdrop-filter: blur(10px);
    height: 50px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}
.navbar-collapse {
    display: flex;
    gap: 30px;  
}

.navbar-collapse .nav-link {
    color: #fff !important;
    margin: 0 15px; 
    font-size: 1.2rem;
}

.navbar .nav-link:hover {
    color: #b8860b !important;
    transform: scale(1.05);
    transition: 0.3s;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: #fff !important;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    white-space: nowrap;
}
.navbar .fa-whatsapp {
    color: #25D366;   
    margin-right: 8px;
    font-size: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 50px;
    padding: 6px 17px;
    font-weight: 500;
    background: #2c286e;
    transition: all 0.3s ease;
    padding: 10px 25px;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 14px;
}

.btn-primary:hover {
    background: #2c286e;
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(0, 91, 187, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

.collapse {
    transition: all 0.4s ease;
}

.btn-outline-primary[aria-expanded="true"] {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title {
      font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.section-title span {
    color: #b8860b;
    letter-spacing: 2px;

}

.review-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.star-rating {
    color: #3f51b5;
    font-size: 1rem;
}

.left-image-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.left-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.left-image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
}

.left-image-overlay h5 {
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
}

.play-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
    position: absolute;
    top: 15px;
    left: 15px;
}

.numerology-badge {
    width: 40px;
    height: 40px;
    background-color: #2c286e;
    color: #f5f5f5;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.full-width-gray-bg {
    background: linear-gradient(to bottom, white, skyblue);
    width: 100%;
    padding: 40px 0;
}


.floating-element {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.stats-section {
    background: #ffff;
    padding: 20px 0 !important;
}

.counter-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2a2a6b;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 120px;
}

.stats-section p {
    margin: 0;
    font-size: 15px;
    color: #ffffff;
}

.parallax-section {
    padding: 60px 20px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

.parallax-section h2,
.parallax-section p {
    color: #2a2a6b;
        margin-top: -1rem;
}

.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a40 100%);
    padding: 25px 0 5px;
    background: #1f1c2c;
    color: #bbb;
    font-size: 0.9rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
    text-decoration: none;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: #fccb2c !important;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .floating-element {
        margin-top: 30px;
    }

    .navbar-brand {
        font-size: 0.9rem;
    }



    @media (max-width: 991.98px) {
        .navbar-collapse {
            background-color: #3d3c3c;
            padding: 10px;
            border-radius: 5px;
            width: 100%;
            margin-left: 0;
        }
    }
}

@media (max-width: 480px) {
    .book-placeholder {
        width: 220px;
        height: 300px;
    }

    .book-placeholder-2 {
        width: 220px !important;
        height: 300px !important;
    }

    .hero-section h2 {
        font-size: 2rem;
    }

    #book-section .hero-text h2 {
        font-size: 2rem !important;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.input-group .form-control {
    height: 50px;
    font-size: 16px;
    width: 50px;
}

.ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
    top: -10px;
    right: -10px;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 200px;
    padding: 5px 0;
    background: #f9c500;
    color: #2b2467;
    font-weight: bold;
    text-align: center;
    transform: rotate(45deg);
    top: 30px;
    right: -45px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    font-size: 0.85rem;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


#contact-section {
    background: linear-gradient(to bottom, #f1f1f1, skyblue);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-form-container {
    padding-right: 40px;
}

.contact-heading {
    margin-bottom: 40px;
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.main-title .highlight {
    color: #3b82f6;
}

.subtitle {
    font-size: 16px;
    color: #4b4e55;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

.contact-form {
    position: relative;
}

.form-input,
.form-textarea {
      width: 100%;
    padding: 10px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 0px;
    font-size: 15px;
    font-weight: 400;
    color: #374151;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
    background: #ffffff;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    font-family: 'Inter', sans-serif;
}

.form-input.is-invalid,
.form-textarea.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input.is-valid,
.form-textarea.is-valid {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.invalid-feedback {
    display: block;
    font-size: 13px;
    color: #ef4444;
    margin-top: 6px;
    padding-left: 4px;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.alert {
    border-radius: 12px;
    border: none;
    padding: 16px 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.alert-success {
    background: #f0fdf4;
    color: #166534;
    border-left: 4px solid #10b981;
}

.alert-danger {
    background: #fef2f2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.contact-info-container {
    padding-left: 40px;
}

.map-container {
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background:none;
}

.map-wrapper {
    position: relative;
}

.map-controls {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.map-btn {
    background: #ffffff;
    border: none;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    border-right: 1px solid #e5e7eb;
}

.map-btn:last-child {
    border-right: none;
}

.map-btn:hover {
    background: #f9fafb;
}

.map-btn.active {
    background: #3b82f6;
    color: #ffffff;
}

.map-embed {
    position: relative;
    height: 280px;
    width: 100%;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.map-marker {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 5;
    pointer-events: none;
}

.marker-icon {
    font-size: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: bounce 2s infinite;
}
#map iframe {
    border: 0;
    background: transparent;
    display: block;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.map-footer {
    background: #f9fafb;
    padding: 8px 16px;
    border-top: 1px solid #e5e7eb;
    font-size: 11px;
}

.map-attribution {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.google-logo {
    font-weight: 600;
    color: #374151;
}

.map-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.map-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.map-links a:hover {
    color: #374151;
    text-decoration: underline;
}

.contact-details {
     background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-title {
    font-size: 12px;
    color: #111827;
    letter-spacing: 1px;
    text-transform: uppercase;
     font-weight: 600;
  margin-bottom: 10px;
}

.contact-info {
    line-height: 1.6;
}

.contact-address {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 12px;
    line-height: 1.5;
}

.contact-phones {
    margin-bottom: 8px;
}

.phone-link {
    display: inline-block;
    font-size: 15px;
    color: #6b7280;
    text-decoration: none;
    margin-right: 16px;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #3b82f6;
    text-decoration: underline;
}

.email-link {
    font-size: 15px;
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .contact-form-container {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .contact-info-container {
        padding-left: 0;
    }

    .main-title {
        font-size: 40px;
        text-align: center;
    }

    .subtitle {
        text-align: center;
    }
}

@media (max-width: 768px) {
    #contact-section {
        padding: 60px 0;
    }

    .main-title {
        font-size: 32px;
    }

    .map-embed {
        height: 240px;
    }

    .map-controls {
        top: 12px;
        left: 12px;
    }

    .map-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .contact-details {
        padding: 20px;
    }

    .map-attribution {
        flex-direction: column;
        align-items: flex-start;
    }

    .map-links {
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 28px;
    }

    .form-input,
    .form-textarea {
        padding: 14px 16px;
        font-size: 14px;
    }

    .btn-send {
        padding: 14px 24px;
        font-size: 13px;
        width: 100%;
    }

    .map-embed {
        height: 200px;
    }

    .phone-link {
        display: block;
        margin-bottom: 4px;
        margin-right: 0;
    }

    .contact-address {
        font-size: 14px;
    }

    .phone-link,
    .email-link {
        font-size: 14px;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.form-input:focus,
.form-textarea:focus,
.btn-send:focus,
.map-btn:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

@media (prefers-contrast: high) {

    .form-input,
    .form-textarea {
        border-color: #000000;
    }

    .form-input:focus,
    .form-textarea:focus {
        border-color: #0066cc;
        box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.3);
    }

    .btn-send {
        background: #000000;
        border: 2px solid #000000;
    }

    .btn-send:hover {
        background: #333333;
    }
}

@media print {
    #contact-section {
        background: #ffffff;
        padding: 20px 0;
    }

    .map-container {
        display: none;
    }

    .btn-send {
        display: none;
    }

    .contact-details {
        box-shadow: none;
        border: 1px solid #000000;
    }
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.order-btn:active {
    transform: scale(0.98);
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-container {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    position: relative;
}

.modal-header {
    background: linear-gradient(135deg, #664494, #8B5A96);
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-title {
        font-size: 20px;
    margin: 0 0px 0px 18px;
	font-weight:700;
}

.modal-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

.modal-body {
    padding: 25px;
}

.info-section {
    background: #f8fafc;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #8B5A96;
}

.info-section h3 {
    color: #664494;
    font-size: 18px;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-section p,
.info-section ul {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

.info-section ul {
    list-style: none;
    padding: 0;
}

.info-section li {
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
}

.info-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.contact-section {
   
    color: white;
    padding: 8px;
    border-radius: 15px;
    text-align: center;
}

.contact-section h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
	color:#000;
}

.contact-section p {
    margin: 0 0 20px 0;
    opacity: 0.9;
	color:#000;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin: 10px 0;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.phone-info {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.9;
	color:#000;
	    font-size: 16px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .modal-container {
        width: 95%;
        margin: 20px;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-title {
        font-size: 20px;
    }
}

.order-btn-wrapper {
    position: relative;
    display: inline-block;
}

.popup-box {
    display: none;
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    padding: 15px;
    z-index: 1000;
}

.popup-box h3 {
    margin-top: 0;
    font-size: 1.1rem;
    color: #2b2467;
}

.popup-box p {
    font-size: 0.9rem;
    color: #444;
}

.whatsapp-btn {
    display: block;
    background: #25d366;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    margin-top: 10px;
    text-decoration: none;
    font-weight: bold;
}

.whatsapp-btn:hover {
    background: #1ebd5a;
}

.map-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    border: 2px solid #d6d6d6;
    padding: 8px;
    background: #fff;
    margin: 0 46px 14px 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.testimonials-section {
    background: linear-gradient(to bottom, #f1f1f1, skyblue);
    min-height: 80vh;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1rem 1rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.stars i {
    margin: 0 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin: 2rem 0;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: #667eea;
    position: absolute;
    top: -20px;
    left: -20px;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid #667eea;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.author-info {
    text-align: left;
}

.author-name {
    margin: 0;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-title {
    margin: 0;
    color: #777;
    font-size: 0.9rem;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #88cbf8;
    transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -30px;
}

.carousel-control-next {
    right: -30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .author-image {
        margin: 0 0 1rem 0;
    }

    .author-info {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonial-text::before {
        display: none;
    }
}

.consultation-section {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.consultation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.consultation-content {
    padding-bottom: 2px;
    padding-top: 2px;
}

.consultation-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.consultation-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    margin-bottom: 1rem;
    font-weight: 400;
}

.features-list {
    margin-bottom: 2rem;
    padding-bottom: 2px;
	margin-left:35px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    padding: 0.25rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.feature-text {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

.consultation-info {
    color: #6c757d;
    font-size: 0.95rem;
}

.consultation-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50%;
}

.image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.consultation-img {
    border-radius: 30px;
    transition: transform 0.3s ease;
}

.consultation-img:hover {
    transform: scale(1.05);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.element-2 {
    top: 30%;
    left: -15%;
    animation-delay: 0.5s;
}

.element-3 {
    bottom: 20%;
    right: -5%;
    animation-delay: 1s;
}

.element-4 {
    bottom: 10%;
    left: -10%;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.testimonial-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stars {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.badge-text {
    margin: 0;
    color: #444;
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-tick {
    color: #1790f3;
    margin-right: 10px;
    font-size: 18px;
}

@media (max-width: 992px) {
    .consultation-title {
        font-size: 2.5rem;
    }

    .floating-element {
        display: none;
    }

    .testimonial-badge {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .consultation-title {
        font-size: 2rem;
        text-align: center;
    }

    .consultation-subtitle {
        text-align: center;
    }

    .consultation-content {
        padding: 1rem 0;
    }

    .feature-item {
        margin-bottom: 1rem;
    }

    .cta-section {
        text-align: center;
    }
}
@media (max-width: 767px) {
    .-brand img {
        width: 60px;
        height: auto;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
        padding: 8px 12px;
    }

    .navbar-nav .nav-item a i {
        font-size: 14px;
    }
}

.navbar-nav .nav-item a.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
}
.navbar-brand .logo {
  width: 120px; 
  height: auto; 
}
.navbar {
    min-height: 70px; 
    /*padding: 2.6rem 1rem;*/
}

.navbar-brand img {
    /*height: 90px; */ 
    
}


.card-text{
    
        font-size: 14px !important;
    font-weight: 400 !important;
    text-align: justify !important;
}
.card-title{
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #2c286e !important;
    
}
