 @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;500&display=swap');

 :root {
     --white: white;
     --black: black;
     --header-gradient: linear-gradient(90deg, #1400f0, #00c9df);
     --light-dim: #777;
     --card-h1: rgb(38, 36, 36);
     --global-bg: #f4f7fc;
     --security-head: #1a2b48;
     --border: rgba(0, 0, 0, 0.27);
     --our-story-bg: radial-gradient(circle at 20% 30%, rgba(245, 122, 147, 0.3), transparent 60%),
         radial-gradient(circle at 80% 70%, rgba(3, 124, 224, 0.3), transparent 60%),
         radial-gradient(circle at 50% 100%, rgba(17, 221, 119, 0.3), transparent 60%);
 }

 html.dark-mode {
     --white: black;
     --black: white;
     --header-gradient: linear-gradient(90deg, #8400f0, #76048a);
     --light-dim: #e3e3e3;
     --card-h1: rgb(222, 208, 208);
     --global-bg: #444446;
     --security-head: #7388ac;
     --border: rgba(223, 223, 223, 0.27);
     --our-story-bg: radial-gradient(circle at 20% 30%, rgba(11, 11, 11, 0.882), transparent 60%),
         radial-gradient(circle at 80% 70%, rgba(16, 38, 53, 0.733), transparent 60%),
         radial-gradient(circle at 50% 100%, rgba(28, 28, 26, 0.858), transparent 60%);
 }

 body {
     margin: 0;
     padding: 0;
     background-color: var(--white);
     transition: all 0.3s ease-in;
     overflow-x: hidden;
     font-family: 'Poppins', sans-serif;
     padding-top: 70px;
 }

 header {
     position: fixed;
     top: 0;
     width: 100%;
     z-index: 100;
 }

 .header-cls {
     display: flex;
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
     padding: 16px 10px;
     /* background-color: var(--white); */
     /* background-color: rgba(0, 0, 255, 0.538); */
     background: var(--header-gradient);
 }

 .logo img {
     width: 180px;
     padding: 10px;
 }

 .menu-items {
     display: flex;
     flex-direction: row;
     flex-wrap: wrap;
     gap: 30px;
 }

 .menu-items a {
     font-size: 18px;
     text-decoration: none;
     color: white;
     transition: all 0.3s ease-in;
 }

 .menu-items a:hover {
     color: rgb(0, 234, 255);
     transform: translateY(-4px);
 }

 .home-nav {
     position: relative;
 }

 .home-select {
     position: absolute;
     display: none;
     top: 100%;
     left: 0%;
     width: 150px;
     background-color: rebeccapurple;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     padding: 20px;
     border-radius: 20px;
 }

 .home-select a {
     color: rgb(248, 248, 248) !important;
 }

 .home-nav:hover .home-select {
     display: block;
 }

 .menu-sett {
     display: flex;
     align-items: center;
 }

 .menu-login {
     display: none;
 }

 .sign-in-menu a {
     text-decoration: none;
     padding: 10px 10px;
     border: 2px solid;
     border-radius: 25px;
     margin-right: 20px;
     color: white;
     transition: all 0.4s ease-in;
     margin-left: 30px;
     cursor: pointer;
 }

 .sign-in-menu a:hover {
     background-color: rgb(249, 249, 255);
     color: blue;
     border-color: white;
 }

 .theme-toggle {
     padding: 10px 10px;
     background-color: transparent;
     border-color: rgba(0, 0, 0, 0);
     color: white;
     cursor: pointer;
 }

 .theme-toggle:hover {
     border: 1px solid rgba(0, 0, 255, 0.597);
     border-radius: 50px;
 }

 .theme-toggle span {
     font-size: 28px;
 }

 .hamburger {
     display: none;
     color: white !important;
 }

 .close-btn {
     display: none;
 }

 @media (max-width:768px) {

     .menu-items {
         display: none;
     }

     .sign-in-menu {
         display: none;
     }

     .menu-items {
         flex-direction: column;
         background: #0e0d0dcc;
         position: fixed;
         top: 0;
         right: 0;
         width: 180px;
         height: 100%;
         padding: 60px 20px;
         transition: right 0.3s ease;
         z-index: 999;

     }

     .menu-login {
         display: block;
     }

     .menu-items a {
         color: white;
     }

     .menu-items button {
         color: rgb(255, 255, 255);
     }

     .close-btn {
         display: block;
         color: rgb(0, 0, 0);
         background-color: #0385ff00;
         cursor: pointer;
         border-color: #00000000;
         border: 2px solid;
     }

     .hamburger {
         display: block;
         margin-right: 20px;
         cursor: pointer;
         color: var(--black);
     }

     .menu-items.show {
         right: -30px;
         display: flex;
         flex-direction: column;
         flex-wrap: wrap;
         justify-content: flex-start;
         align-content: flex-start;
     }

     .sign-in-menu.show {
         display: block;
         margin-top: 20px;
         color: white;
     }

     .hamburger:hover {
         color: #b82e5e;
     }

 }


 .footer {
     margin-top: 3%;
     background: linear-gradient(135deg, #0a0f29, #1a1a1a);

 }

 .footer-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 20px;
     padding: 20px 10px;

 }

 .follow-us img {
     width: 50px;
 }

 .footer-tagline {
     color: wheat;
     text-indent: 20px;
 }

 .footer-links {
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .footer h1 {
     color: #facc15 !important;
 }

 .footer-links a {
     text-decoration: none;
     text-indent: 25px;
     transition: all .2s ease-in;
     color: #a5b4fc;
 }

 .footer-links a:hover {
     text-decoration: underline;
     color: #6366f1;
 }

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

 .footer-contact-info li {
     list-style: none;
     color: #d1d5db;
 }

 .footer-contact-info a {
     color: #a5b4fc;
     text-decoration: none;
 }

 .footer-contact-info a:hover {
     color: #6366f1;
     text-decoration: underline;
 }

 .footer-legel-link li {
     list-style: none;
 }

 .footer-legel-link {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .footer-legel-link a {
     text-decoration: none;
     color: #a5b4fc;
 }

 .footer-legel-link a:hover {
     color: #6366f1;
     text-decoration: underline;
 }

 .footer-newsletter {
     display: flex;
     flex-direction: column;
     /* gap: 10px; */
 }

 .news-letter h2 {
     color: #0febff;
 }

 .newsletter-form {
     display: flex;
     flex-direction: row;
     gap: 10px;
 }

 .newsletter-form input {
     padding: 16px 10px;
     background-color: transparent;
     border: none;
     border-bottom: 2px solid white;
     transition: all 0.3s ease-in;
 }

 .newsletter-form button {
     padding: 10px;
     cursor: pointer;
     border-radius: 10px;
     border-color: transparent;
     background-color: transparent;
     color: white;
     border: 1px solid white;
     transition: all 0.3s ease-in;
 }

 .newsletter-form button:hover {
     background-color: #007CF0;
     border-color: transparent;
 }

 .footer-copyright {
     padding: 20px 10px;
     text-align: center;
     color: whitesmoke;
 }

 .section-header {
     text-align: center;
     padding: 80px 0px;
 }

 .section-header h1 {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 1rem;
     color: #2a81d8;
 }

 .section-header p {
     font-size: 1.1rem;
     color: var(--light-dim);
     font-style: italic;
     margin: 0 auto 50px auto;
 }

 .hero {
     background-image: linear-gradient(rgba(0, 0, 0, 0.666), rgba(0, 0, 0, 0.648)), url('./assets/contact-hero.jpg');
     height: 70vh;
     background-position: center center;
     background-size: cover;
     display: flex;
     align-items: center;
     justify-items: center;
     text-align: center;
     justify-content: center;
 }

 .hero-content h1 {
     font-size: 46px;
     color: white;
 }

 .hero-content p {
     font-style: italic;
     color: whitesmoke;
 }

 .contact-container {
     padding: 80px 0;

 }

 .contact-layout {
     display: flex;
     align-items: center;
     gap: 60px;
     background: linear-gradient(120deg, #7474baa3 0%, #547287a9 100%);
     padding: 40px;
     border-radius: 20px;
     box-shadow: 0 15px 50px rgba(0, 0, 0, 0.07);
     margin: 3%;
 }

 .contact-form-wrapper {
     flex: 1;
 }

 .contact-gif {
     flex: 1;
     padding-left: 40px;
     border-left: 1px solid #e9ecef;
 }

 .contact-gif img {
     width: 400px;
 }

 @media (max-width:478px) {
     .contact-gif img {
         width: 250px;
     }
 }

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

 .form-group label {
     display: block;
     font-weight: 600;
     margin-bottom: 8px;
     color: whitesmoke;
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
     width: 100%;
     padding: 12px 15px;
     border: 1px solid #ced4da;
     border-radius: 8px;
     font-size: 1rem;
     transition: border-color 0.3s ease, box-shadow 0.3s ease;
 }

 .form-group input:focus,
 .form-group select:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: #007bff;
     box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
 }

 .form-group .error-message {
     color: #dc3545;
     font-size: 0.85rem;
     margin-top: 5px;
     display: none;
 }

 .form-group input.is-invalid,
 .form-group select.is-invalid,
 .form-group textarea.is-invalid {
     border-color: #dc3545;
 }

 .form-group.has-error .error-message {
     display: block;
 }

 .btn-submit {
     width: 100%;
     padding: 15px;
     background: #007bff;
     color: #fff;
     border: none;
     border-radius: 8px;
     font-size: 1.1rem;
     font-weight: 700;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .btn-submit:hover {
     background: #0056b3;
     transform: scale(1.02);
 }



 .success-modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.6);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 1000;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease, visibility 0.3s ease;
 }

 .success-modal-overlay:not(.hidden) {
     opacity: 1;
     visibility: visible;
 }

 .success-modal-content {
     background-color: #fff;
     border-radius: 15px;
     max-width: 500px;
     width: 90%;
     text-align: center;
     padding: 40px;
     transform: scale(0.9);
     transition: transform 0.3s ease;
 }

 .success-modal-overlay:not(.hidden) .success-modal-content {
     transform: scale(1);
 }

 .success-icon {
     font-size: 4rem;
     color: #007bff;
     margin-bottom: 20px;
 }

 .modal-body h2 {
     font-size: 1.8rem;
     margin-bottom: 15px;
 }

 .btn-primary {
     width: 100%;
     padding: 12px;
     font-size: 1rem;
     font-weight: 600;
     border: none;
     border-radius: 8px;
     background: #007bff;
     color: #fff;
     cursor: pointer;
 }

 @media (max-width: 992px) {
     .contact-layout {
         flex-direction: column;
     }

     .contact-info {
         border-left: none;
         border-top: 1px solid #e9ecef;
         padding-left: 0;
         padding-top: 40px;
     }
 }

 @media (max-width: 576px) {
     .hero-content h1 {
         font-size: 2.2rem;
     }

     .contact-layout {
         padding: 25px;
     }
 }

 .contact-info {
     background: linear-gradient(160deg, #fff0f5b3, #fde2e4b3);

 }

 .contact-info-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 25px;
     justify-items: center;
     align-items: stretch;
     margin: 3%;
 }

 .info-card {
     background-color: transparent;
     border-radius: 15px;
     padding: 30px;
     text-align: center;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
     border: 1px solid #e9ecef;
     transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
     display: flex;
     flex-direction: column;
 }

 .info-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 15px 40px rgba(0, 123, 255, 0.1);
     border-color: #007bff;
 }

 .info-card i {
     font-size: 40px;
     color: #1400f0;
 }


 .info-card h3 {
     font-size: 1.4rem;
     font-weight: 700;
     color: #1a2b48;
     margin-bottom: 10px;
 }

 .info-card p {
     font-size: 1rem;
     color: var(--light-dim);
     line-height: 1.6;
     margin-bottom: 20px;
     flex-grow: 1;
 }

 .info-card a {
     color: #007bff;
     text-decoration: none;
     font-weight: 600;
     transition: color 0.3s ease;
 }

 .info-card a:hover {
     color: #0056b3;
 }

 .info-loc iframe {
     width: 100%;
     height: 200px;
 }

 .info-loc {
     padding: 0%;
 }

 .social-links {
     display: flex;
     justify-content: center;
     gap: 15px;
 }

 .social-links a {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background-color: #eef5ff;
     color: #007bff;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.1rem;
     transition: all 0.3s ease;
 }

 .social-links a:hover {
     background-color: #007bff;
     color: #fff;
     transform: scale(1.1);
 }


 .modal {
     display: none;
     position: fixed;
     z-index: 1000;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     backdrop-filter: blur(3px);
     overflow-y: auto;
     justify-content: center;
     padding: 5px;
 }

 .modal-content {
     border-radius: 12px;
     overflow-y: auto;
     min-height: 90vh;
     display: flex;
     flex-direction: column;
     position: relative;
     animation: fadeIn 0.3s ease;
 }

 @media (max-width:768px) {
     .modal-content {
         margin-top: 5%;
     }
 }


 @keyframes fadeIn {
     from {
         transform: scale(0.9);
         opacity: 0;
     }

     to {
         transform: scale(1);
         opacity: 1;
     }
 }


 .close-btn {
     position: absolute;
     top: 10px;
     right: 15px;
     font-size: 22px;
     cursor: pointer;
 }