@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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f9f3fd;
}

.container{
    flex: 1;
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
}

.container .header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    transition: all 0.3s ease;
}

.header.sticky {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #013289;
}

.menu {
    transition: all 0.3s ease;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.menu ul li a{
    text-decoration: none;
    color: #013289;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.menu ul li a.active{
    color: #4154f1;
    border-bottom: 2px solid #4154f1;
}

.menu ul li a:hover{
    color: #317dff;
}

.btn{
    background-color: #4154f1;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
}

.btn:hover{
    background-color: #317dff;
    transform: translateY(-10px);
    box-shadow: 0 15px 10px rgba(0, 0, 0, 0.1);
}

.csticon{
    color: #fff !important;
}

.logo {
    height: 60px;
    width: 160px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    mix-blend-mode: multiply !important;
}

/* ========Home Section====== */

.home {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 100px 50px;
    gap: 60px;
    position: relative;
}
 .title {
    width: 100%;
    position: absolute;
    top: 100px;
    left: 50px;
}
 .title h1 {
    font-size: 1.8rem;
    color: #013289;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}
 .title h1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 25px;
    background: #4154f1;
    border-radius: 2px;
}

.home .left-sec {
    max-width: 600px;
    flex: 1;
    animation: slideLeft 1s ease forwards;
    opacity: 0;
    transform: translateX(-50px);
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.home .left-sec h1 {
    font-size: 2.5rem;
    color: #013289;
    margin-bottom: 20px;
}

.home .left-sec p {
    color: #64196b;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 500;
}

.home .btn-sec {
    display: flex;
    gap: 20px;
}

.home .right-sec {
    max-width: 600px;
    flex: 1;
    background: transparent;
    position: relative;
    isolation: isolate;
    animation: slideRight 1s ease forwards;
    opacity: 0;
    transform: translateX(50px);
}

@keyframes slideRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.home .right-sec img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    mix-blend-mode: multiply;
    position: relative;
    z-index: 1;
    isolation: isolate;
}

@media (max-width: 968px) {
    .home {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }

    .home .title {
        position: absolute;
        top: 80px;
        left: 20px;
        text-align: left;
    }

    .home .btn-sec {
        justify-content: center;
    }

    .home .left-sec h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .home .title {
        left: 15px;
    }
    
    .home .title h1 {
        font-size: 1.5rem;
    }
}

/* ========About Section====== */
.about {
    min-height: 100vh;
    width: 100%;
    padding: 100px 50px;
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 80px;
}

.about .left-side {
    flex: 1;
    max-width: 500px;
}

.about .left-side img {
    width: 100%;
    height: auto;
    border-radius: 20px;
        transition: transform 0.3s ease;
}

.about .left-side img:hover {
    transform: translateY(-10px);
}

.about .right-side {
    flex: 1;
}

.about .right-side h2 {
    font-size: 2.2rem;
    color: #013289;
    margin-bottom: 40px;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(65, 84, 241, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(65, 84, 241, 0.15);
}

.feature-item i {
    font-size: 2.5rem;
    color: #4154f1;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: #013289;
    margin-bottom: 10px;
}

.feature-item p {
    color: #64196b;
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 968px) {
    .about {
        padding: 80px 20px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .features {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .about .right-side h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .about .right-side h2 {
        font-size: 1.5rem;
    }

    .feature-item {
        padding: 20px;
    }
}

/* ========Services Section====== */
.services {
    min-height: 100vh;
    width: 100%;
    padding: 100px 50px;
    position: relative;
}

.services-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 80px;
    padding: 0 20px;
}

.service-box {
    padding: 40px 25px;
    text-align: center;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 25px rgba(65, 84, 241, 0.07);
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(65, 84, 241, 0.15);
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(65, 84, 241, 0.1);
    transition: all 0.4s ease;
    transform: scale(1);
}

.service-box:hover .icon-box::before {
    transform: scale(1.15);
}

.icon-box i {
    font-size: 42px;
    color: #4154f1;
    position: relative;
    transition: all 0.4s ease;
}

.service-box:hover .icon-box i {
    transform: scale(1.1);
    color: #013289;
}

.service-box h3 {
    font-size: 1.4rem;
    color: #013289;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-box p {
    color: #64196b;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 1200px) {
    .services-content {
        gap: 20px;
        padding: 0;
    }
    
    .service-box {
        padding: 30px 20px;
    }
}

@media (max-width: 968px) {
    .services {
        padding: 80px 20px;
    }
    
    .services-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 580px) {
    .services-content {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 968px) {
    .menu-icon {
        display: block;
    }

    .menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 40px 20px;
        transition: all 0.3s ease;
    }

    .menu.active {
        left: 0;
    }

    .menu ul {
        flex-direction: column;
        gap: 30px;
    }

    .menu ul li a.btn {
        width: 200px;
        text-align: center;
    }
}

/* ========Plans Section====== */
.plans {
    min-height: 100vh;
    width: 100%;
    padding: 100px 50px;
    position: relative;
}

.plans-content {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 80px;
    padding: 0 20px;
}

.plan-box {
    flex: 1;
    max-width: 350px;
    padding: 40px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 25px rgba(65, 84, 241, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.plan-box.featured {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(65, 84, 241, 0.15);
    border: 2px solid #4154f1;
}

.plan-box:hover {
    transform: translateY(-10px);
}

.plan-box.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.plan-header h3 {
    font-size: 1.5rem;
    color: #013289;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 30px;
}

.price .currency {
    font-size: 1.5rem;
    color: #4154f1;
    vertical-align: top;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #4154f1;
}

.price .duration {
    color: #64196b;
}

.plan-box .features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-box .features li {
    padding: 10px 0;
    color: #64196b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.plan-box .features li i {
    color: #4154f1;
    font-size: 1.2rem;
}

/* ========Contact Section====== */
.contact {
    min-height: 100vh;
    width: 100%;
    padding: 100px 50px;
    position: relative;
}

.contact-content {
    display: flex;
    gap: 50px;
    margin-top: 80px;
    padding: 0 20px;
}

.contact-info {
    flex: 1;
    max-width: 400px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(65, 84, 241, 0.1);
}

.info-item i {
    font-size: 2rem;
    color: #4154f1;
}

.info-item .details h3 {
    font-size: 1.2rem;
    color: #013289;
    margin-bottom: 5px;
}

.info-item .details p {
    color: #64196b;
}

.contact-form {
    flex: 1;
    max-width: 600px;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(65, 84, 241, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(65, 84, 241, 0.2);
    border-radius: 5px;
    font-size: 1rem;
    color: #013289;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #4154f1;
    outline: none;
}

.contact-form button {
    width: 100%;
}

/* Map Container */
.map-container {
    margin-top: 50px;
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .map-container {
        height: 350px;
        margin-top: 30px;
    }
}

/* Footer */
.footer {
    background: #013289;
    color: #fff;
    padding: 80px 50px 30px;
    width: 100%;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #4154f1;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4154f1;
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4154f1;
    padding-left: 5px;
}

.footer-section .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section .contact-info li i {
    color: #4154f1;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    background: #4154f1;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}

.back-to-top:hover {
    background: #013289;
    transform: translateY(-5px);
}

/* Active menu item */
.menu ul li a.active {
    color: #4154f1;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .plans-content {
        flex-wrap: wrap;
    }

    .plan-box {
        min-width: 300px;
    }
}

@media (max-width: 968px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-info,
    .contact-form {
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-section ul li a:hover {
        padding-left: 0;
    }
}

@media (max-width: 580px) {
    .plans-content {
        flex-direction: column;
        align-items: center;
    }

    .plan-box {
        width: 100%;
        max-width: 350px;
    }

    .plan-box.featured {
        transform: scale(1);
    }

    .plan-box.featured:hover {
        transform: translateY(-10px) scale(1);
    }
}

@media (max-width: 968px) {
    .logo {
        width: 140px;
        height: 50px;
    }

    section {
        padding-top: 100px !important;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 120px;
        height: 45px;
    }
}

@media (max-width: 968px) {
    .back-to-top {
        right: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

section {
    padding-top: 120px !important;
}