@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
     --primary: #3b28cc;
     --primary-dark: #1a0d8c;
     --primary-light: #6a5acd;
     --accent: #FFB400;
     --text: #2d3748;
     --text-light: #000;
     --background: #f8fafc;
     --white: #ffffff;
     --gray: #e2e8f0;
     --success: #48bb78;
     --error: #e53e3e;
}

* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: "Poppins", sans-serif;
}

html {
     scroll-behavior: smooth;
     background-color: var(--background);
}

body {
     background-color: var(--background);
     color: var(--text);
     line-height: 1.6;
}

::-webkit-scrollbar {
     width: 5px;
}

::-webkit-scrollbar-track {
     background: var(--gray);
}

::-webkit-scrollbar-thumb {
     background: var(--primary);
}

/* Header Styles */
header {
     background: var(--primary);
     color: var(--white);
     padding: 0.6rem 6rem;
     display: flex;
     align-items: center;
     justify-content: space-between;
     z-index: 1000;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
     position: absolute;
     top: 20px;
     height: 65px;
     width: 70px;
     border-radius: 30%;
     object-fit: cover;
     border: 2px solid var(--white);
     z-index: 9999;
}

.header-content {
     display: flex;
     align-items: center;
     gap: 2rem;
}

header h1 {
     font-size: 1.5rem;
     font-weight: 600;
}

.social-icons {
     height: 35px;
}

.social-icons a {
     text-decoration: none;
     color: var(--white);
     font-size: 25px;
     margin-left: 1rem;
     transition: all 0.3s ease;
}

.social-icons a:hover {
     color: var(--accent);
     transform: translateY(-2px);
}

.menu-toggle {
     display: none;
     font-size: 1.5rem;
     cursor: pointer;
}

/* Navigation */
.navbar {
     background: var(--white);
     box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
     padding: 0.5rem 2rem;
     position: sticky;
     top: 0px;
     z-index: 999;
}

.nav-links {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 2rem;
     list-style: none;
}

.nav-links a {
     color: var(--text);
     text-decoration: none;
     font-weight: 500;
     padding: 0.5rem 1rem;
     border-radius: 6px;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 0.5rem;
}

.nav-links a:hover,
.nav-links a.active {
     color: var(--primary);
     background: rgba(59, 40, 204, 0.1);
}

.contact-btn {
     background: var(--primary);
     color: var(--white) !important;
     padding: 0.5rem 1.5rem !important;
     font-weight: 600 !important;
     animation: pulse 2s infinite;
}

.contact-btn:hover {
     background: var(--primary-dark) !important;
     transform: none !important;
}

@keyframes pulse {
     0% {
          box-shadow: 0 0 0 0 rgba(59, 40, 204, 0.4);
     }

     70% {
          box-shadow: 0 0 0 10px rgba(59, 40, 204, 0);
     }

     100% {
          box-shadow: 0 0 0 0 rgba(59, 40, 204, 0);
     }
}

/* Hero Section */
.hero {
     display: flex;
     justify-content: center;
     gap: 10rem;
     align-items: center;
     padding: 5rem;
     background: linear-gradient(135deg, rgba(59, 40, 204, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
     position: relative;
     overflow: hidden;
}

.hero::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -50%;
     width: 100%;
     height: 200%;
     background: radial-gradient(circle, rgba(59, 40, 204, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
     z-index: -1;
}

.hero-content {
     flex: 1;
     padding-right: 2rem;
     max-width: 600px;
}

.hero-content h1 {
     font-size: 3rem;
     font-weight: 700;
     margin-bottom: 1.5rem;
     line-height: 1.2;
     color: var(--primary-dark);
}

.hero-content h1 span {
     color: var(--primary);
}

.hero-content p {
     font-size: 1.1rem;
     color: var(--text-light);
     margin-bottom: 2rem;
}

.hero-actions {
     display: flex;
     column-gap: 20px;
}

.btn {
     display: inline-block;
     background: var(--primary);
     color: var(--white);
     padding: 0.8rem 2rem;
     border-radius: 50px;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.3s ease;
     box-shadow: 0px 0px 18px var(--primary);
}

.btn:hover {
     background: var(--primary-dark);
     transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(59, 40, 204, 0.4);
}

.btn-outline {
     background: transparent;
     border: 2px solid var(--primary);
     color: var(--primary);
}

.btn-outline:hover {
     background: var(--primary);
     color: var(--white);
}

.hero-image {
     position: relative;
}

.hero-image img {
     display: block;
     margin: auto;
     width: 100%;
     height: 20em;
     max-width: 700px;
     border-radius: 20px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
     transform: perspective(1000px) rotateY(-10deg);
     animation: mirrorflip 3s infinite ease-in-out;
     transform-style: preserve-3d;
}

@keyframes mirrorflip {
     0% {
          transform: perspective(1000px) rotateY(-10deg);
     }

     50% {
          transform: perspective(1000px) rotateY(0deg);
     }

     100% {
          transform: perspective(1000px) rotateY(-10deg);
     }
}


.hero-image img:hover {
     transform: perspective(1000px) rotateY(0deg);
}

.hero-actions a {
     box-shadow: none;
}

/* Quick Actions */
.quick-actions {
     padding: 2rem 2rem 1rem;
     background: var(--white);
     text-align: center;
     position: relative;
}

.quick-actions::before {
     content: "";
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 50%;
     height: 3px;
     background: linear-gradient(90deg, var(--primary), var(--primary-light));
     border-radius: 50%;
}

.quick-actions .section-title {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 1rem;
     color: var(--primary-dark);
     position: relative;
     display: inline-block;
}

.quick-actions .section-title::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
     background: var(--accent);
     border-radius: 2px;
}

.quick-actions .section-subtitle {
     color: var(--text-light);
     max-width: 700px;
     margin: 0 auto;
}

.quick-actions .action-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
     max-width: 1250px;
     margin: 3rem auto;
}

.quick-actions .action-card {
     background: var(--white);
     border-radius: 12px;
     border-top: 5px solid var(--primary-dark);
     padding: 1rem 2rem;
     text-align: center;
     transition: all 0.3s ease;
     box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
     transition: all 0.3s ease-in-out;
     cursor: pointer;
}

.quick-actions .action-card:hover {
     background: #d9ddff;
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(59, 40, 204, 0.1);
     border-color: var(--primary-light);
}

.quick-actions .action-icon {
     font-size: 2.5rem;
     color: var(--primary);
     margin-bottom: 1rem;
}

.quick-actions .action-card h3 {
     font-size: 1.3rem;
     margin-bottom: 1rem;
}

.quick-actions .action-card p {
     color: var(--text-light);
     margin-bottom: 1.5rem;
     height: 5rem;
}

/* About Section */
.about {
     padding: 4rem 2rem 4rem;
     position: relative;
     background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
}

.about::before {
     content: "";
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 50%;
     height: 3px;
     background: linear-gradient(90deg, var(--primary), var(--primary-light));
     border-radius: 50%;
}

.about-container {
     display: flex;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
     gap: 3rem;
}

.about-image {
     flex: 1;
     position: relative;
}

.about-image img {
     width: 100%;
     border-radius: 20px;
     box-shadow: -10px 20px 20px rgba(0, 0, 0, 0.5);
}

.about-content {
     flex: 1;
}

.about-content h2 {
     font-size: 2rem;
     margin-bottom: 1.5rem;
     color: var(--primary-dark);
}

.about-content p {
     margin-bottom: 1.5rem;
     color: var(--text-light);
}

.features {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 1.5rem;
     margin-top: 2rem;
}

.feature-item {
     display: flex;
     align-items: flex-start;
     gap: 1rem;
}

.feature-icon {
     color: var(--primary);
     font-size: 1.5rem;
     margin-top: 0.3rem;
}

.feature-text h4 {
     font-size: 1.1rem;
     margin-bottom: 0.5rem;
}

.feature-text p {
     font-size: 0.9rem;
     margin-bottom: 0;
}

/* Process Section */
.process {
     padding: 4rem 2rem 4rem;
     position: relative;
     background: var(--white);
     text-align: center;
}

.process::before {
     content: "";
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 50%;
     height: 3px;
     background: linear-gradient(90deg, var(--primary), var(--primary-light));
     border-radius: 50%;
}

.process-steps {
     display: flex;
     flex-direction: row;
     column-gap: 14px;
     align-items: center;
     justify-content: center;
     max-width: 1250px;
     margin: 3rem auto 0;
     position: relative;
}

.process-steps::before {
     /* content: ''; */
     position: absolute;
     top: 49%;
     left: 0;
     right: 0;
     height: 3px;
     background: var(--gray);
     z-index: 1;
}

.process .section-title {
     font-size: 2.5rem;
     font-weight: 700;
     color: var(--primary-dark);
     position: relative;
     text-align: center;
}

.quick-actions .section-subtitle {
     color: var(--text-light);
     max-width: 700px;
     margin: 0 auto;
     text-align: center;
}

.process img {
     position: relative;
     width: 50px;
     height: 15px;
     background-color: white;
}

.step {
     background: var(--white);
     padding: 2rem;
     border-radius: 12px;
     width: 100%;
     height: -webkit-fill-available;
     text-align: center;
     position: relative;
     z-index: 2;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
     transition: all 0.3s ease;
}

.step:hover {
     border: 1px solid var(--primary-dark);
     transform: translateY(-10px);
     box-shadow: 0 5px 15px var(--primary);
}

.step-number {
     position: relative;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 60px;
     height: 60px;
     background: var(--primary);
     color: var(--white);
     font-size: 1.5rem;
     font-weight: 700;
     border-radius: 50%;
     margin-bottom: 1.5rem;
     box-shadow: 0 5px 15px rgba(59, 40, 204, 0.3);
}

.step-number::before {
     content: "";
     position: absolute;
     bottom: -3px;
     left: 50%;
     transform: translateX(-50%);
     width: 80%;
     height: 4px;
     background: linear-gradient(90deg, var(--primary), var(--primary-light));
     opacity: 0.3;
     border-radius: 50%;
}

.step h3 {
     font-size: 1.3rem;
     margin-bottom: 1rem;
}

.step p {
     color: var(--text-light);
     font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
     padding: 4rem 2rem;
     background: linear-gradient(135deg, rgba(248, 250, 252, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

/* .testimonials .section-title {
          text-align: center;
     } */

.testimonial-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     max-width: 1200px;
     margin: 3rem auto 0;
}

.testimonials .section-title {
     font-size: 2.5rem;
     font-weight: 700;
     text-align: center;
     color: var(--primary-dark);
     position: relative;
}

.testimonials .section-subtitle {
     color: var(--text-light);
     max-width: 700px;
     margin: 0 auto;
     text-align: center;
}

.testimonial-card {
     background: var(--white);
     padding: 2rem;
     border-radius: 12px;
     border-top: 5px solid var(--primary);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
}

.testimonial-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(59, 40, 204, 0.1);
}

.testimonial-header {
     display: flex;
     align-items: center;
     margin-bottom: 1.5rem;
}

.testimonial-avatar {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     object-fit: cover;
     margin-right: 1rem;
     border: 3px solid var(--primary-light);
}

.testimonial-author h4 {
     font-size: 1.1rem;
     margin-bottom: 0.3rem;
}

.testimonial-author p {
     color: var(--text-light);
     font-size: 0.9rem;
}

.testimonial-rating {
     color: var(--accent);
     font-size: 1rem;
     margin-bottom: 1rem;
}

.testimonial-quote {
     color: var(--text-light);
     font-style: italic;
     position: relative;
     padding-left: 1.5rem;
}

.testimonial-quote::before {
     content: '"';
     position: absolute;
     left: 0;
     top: -0.5rem;
     font-size: 2rem;
     color: var(--primary-light);
     opacity: 0.3;
}

.view-all {
     text-align: center;
     margin-top: 3rem;
}

/* Contact Section */
.contact {
     padding: 4rem 2rem;
     background: var(--primary);
}

.contact .section-title {
     margin-bottom: 2.5rem;
     text-align: center;
     font-size: 2.3rem;
     color: var(--white);
}

.contact-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     max-width: 1150px;
     margin: 0 auto;
     align-items: center;
}

.contact-info {
     background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
     padding: 2rem;
     border-radius: 12px;
     color: var(--white);
     box-shadow: 0 20px 40px rgba(59, 40, 204, 0.2);
}

.contact-info h2 {
     font-size: 2rem;
     margin-bottom: 1.5rem;
     position: relative;
     padding-bottom: 1rem;
}

.contact-info h2::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 60px;
     height: 3px;
     background: var(--accent);
}

.contact-info p {
     margin-bottom: 2rem;
     opacity: 0.9;
}

.contact-details {
     margin-top: 2rem;
}

.contact-item {
     display: flex;
     align-items: flex-start;
     gap: 1rem;
     margin-bottom: 1.5rem;
}

.contact-icon {
     font-size: 1.2rem;
     color: var(--accent);
     margin-top: 0.3rem;
}

.contact-text h4 {
     font-size: 1.1rem;
     margin-bottom: 0.3rem;
}

.contact-text a {
     text-decoration: underline;
     color: var(--white);
     transition: all 0.3s ease;
}

.contact-text a:hover {
     color: var(--accent);
     text-decoration: underline;
}

/* Clean Contact Form Styles */
.contact-form-section {
     padding: 2rem;
     border-radius: 20px;
     background: #f8f9fa;
}

.contact-form-container {
     max-width: 600px;
     margin: 0 auto;
     background: white;
     padding: 2rem;
     border-radius: 20px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-title {
     text-align: center;
     color: var(--primary-dark);
     margin-bottom: 1.5rem;
     font-size: 1.8rem;
}

.clean-contact-form {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
}

.form-row {
     display: flex;
     gap: 1rem;
}

.form-group {
     flex: 1;
     margin-bottom: 0;
}

.form-group label {
     display: block;
     margin-bottom: 0.5rem;
     font-weight: 500;
     color: #34495e;
}

.form-group input,
.form-group select {
     width: 100%;
     padding: 0.8rem;
     border: 1px solid #ddd;
     border-radius: 6px;
     font-size: 1rem;
     transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
     border-color: #3498db;
     outline: none;
     box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.dob-selectors {
     display: flex;
     gap: 0.5rem;
}

.dob-selectors select {
     flex: 1;
}

.family-members-group label {
     margin-bottom: 0.5rem;
}

.family-selectors {
     display: flex;
     gap: 1rem;
}

.family-option {
     flex: 1;
}

.family-option label {
     display: block;
     margin-bottom: 0.5rem;
     font-size: 0.9rem;
}

.submit-button {
     width: 50%;
     margin: auto;
     background: var(--primary-dark);
     color: white;
     border: none;
     padding: 0.7rem;
     border-radius: 6px;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     margin-top: 1rem;
}

.submit-button:hover {
     background: var(--primary);
     transform: translateY(-2px);
}


/* Responsive adjustments */
@media (max-width: 600px) {
     .form-row {
          flex-direction: column;
          gap: 1.5rem;
     }

     .dob-selectors,
     .family-selectors {
          flex-direction: column;
          gap: 0.5rem;
     }

     .contact-form-container {
          padding: 1.5rem;
     }
}

/* Footer */
footer {
     background: var(--primary-dark);
     color: var(--white);
     padding: 4rem 2rem 2rem;
}

.footer-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 3rem;
     max-width: 1200px;
     margin: 0 auto;
}

.footer-logo {
     margin-bottom: 1.5rem;
}

.footer-logo img {
     height: 60px;
     width: 60px;
     border-radius: 50%;
     object-fit: cover;
     border: 2px solid var(--white);
}

.footer-about p {
     opacity: 0.8;
     margin-bottom: 1.5rem;
}

.footer-social {
     display: flex;
     gap: 1rem;
}

.footer-social a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     color: var(--white);
     font-size: 1.2rem;
     transition: all 0.3s ease;
}

.footer-social a:hover {
     background: var(--accent);
     color: var(--primary-dark);
     transform: translateY(-3px);
}

.footer-links h3 {
     font-size: 1.2rem;
     margin-bottom: 1.5rem;
     position: relative;
     padding-bottom: 0.5rem;
}

.footer-links h3::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 40px;
     height: 2px;
     background: var(--accent);
}

.footer-links ul {
     list-style: none;
}

.footer-links li {
     margin-bottom: 0.8rem;
}

.footer-links a {
     color: var(--white);
     text-decoration: none;
     opacity: 0.8;
     transition: all 0.3s ease;
}

.footer-links a:hover {
     opacity: 1;
     padding-left: 5px;
}

.footer-newsletter p {
     opacity: 0.8;
     margin-bottom: 1.5rem;
}

.newsletter-form {
     display: flex;
}

.newsletter-form input {
     flex: 1;
     padding: 0.8rem 1rem;
     border: none;
     border-radius: 6px 0 0 6px;
     font-size: 1rem;
}

.newsletter-form button {
     padding: 0 1.5rem;
     background: var(--accent);
     color: var(--primary-dark);
     border: none;
     border-radius: 0 6px 6px 0;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
}

.newsletter-form button:hover {
     background: #ffc233;
}

.footer-bottom {
     text-align: center;
     padding-top: 3rem;
     margin-top: 3rem;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     opacity: 0.7;
     font-size: 0.9rem;
}

/* Responsive Styles */

@media (max-width: 1050px) {
     .process-steps {
          flex-direction: column;
          align-items: center;
          row-gap: 2rem;
     }

     .logo img {
          position: absolute;
          top: 25px;
          left: 40px;
          width: 65px;
          height: 60px;
     }
}

@media (max-width: 992px) {
     .logo img {
          display: none;
     }

     .hero {
          flex-direction: column-reverse;
          row-gap: 30px;
          text-align: center;
          padding: 3rem 2rem 0;
     }

     @keyframes mirrorflip {
          0% {
               transform: perspective(1000px) rotateX(10deg);
          }

          50% {
               transform: perspective(1000px) rotateX(0deg);
          }

          100% {
               transform: perspective(1000px) rotateX(10deg);
          }
     }

     .hero-content {
          padding-right: 0;
          margin-bottom: 3rem;
          max-width: 100%;
     }

     .about-container {
          flex-direction: column;
     }

     .process-steps::before {
          display: none;
     }

     .process img {
          transform: rotate(90deg);
     }
}

@media (max-width: 768px) {
     header {
          flex-direction: column;
          padding: 10px;
     }

     .logo img {
          display: block;
          position: absolute;
          top: 18px;
          left: 30px;
          width: 55px;
          height: 50px;
     }

     .header-content {
          flex-direction: column;
          gap: 1rem;
     }

     .menu-toggle {
          display: block;
          position: absolute;
          top: 1px;
          right: 1rem;
          font-size: 30px;
     }

     .navbar {
          position: fixed;
          top: 0;
          left: -100%;
          width: 80%;
          height: 100vh;
          background: var(--white);
          box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
          transition: all 0.3s ease;
          padding-top: 4rem;
     }

     .navbar.active {
          left: 0;
     }

     .nav-links {
          flex-direction: column;
          align-items: flex-start;
          padding: 0 2rem;
     }

     .nav-links a {
          width: 100%;
          padding: 1rem 0;
     }

     .hero-content h1 {
          font-size: 2.5rem;
     }

     .form-row {
          grid-template-columns: 1fr;
     }


     .contact-container {
          display: flex;
          flex-direction: column;
     }

     .contact-form-section {
          width: 100%;
     }

}

@media (max-width: 600px) {
     header h1 {
          font-size: 16px;
     }

     .social-icons {
          display: none;
     }

     .logo img {
          top: 0;
          width: 41px;
          height: 41px;
          border: 0.085rem solid #fff;
     }

     .hero-image img {
          height: 15em;
     }

     .hero-actions {
          flex-direction: column;
          row-gap: 20px;
     }

     .hero-content h1 {
          font-size: 2rem;
     }

     .section-title {
          font-size: 2rem;
     }

     .contact-container {
          display: flex;
          flex-direction: column-reverse;
     }

     .contact-form-section {
          width: 100%;
     }

     .contact-info {
          order: 2;
     }

     .contact-form {
          order: 1;
     }
}