* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f6f9;
    color: #333;
    line-height: 1.6;
}
.navbar {
    background: white;
    height: 80px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 80px; /* Logo ki size yahan se adjust karein */
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #b21f1f; /* Arya Info System theme red */
}

/* Special Button Style for Contact Us */
.contact-btn {
    background:  #1a2a6c; /* Deep Blue */
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #b21f1f !important;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
#check {
    display: none;
}

.checkbtn {
    font-size: 25px;
    color: #333;
    cursor: pointer;
    display: none;
}

/* Responsive Styles */
@media (max-width: 858px) {
    .checkbtn {
        display: block;
    }

    .nav-links {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #fdfdfd;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .5s;
        flex-direction: column;
        padding-top: 50px;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        font-size: 20px;
    }

    #check:checked ~ .nav-links {
        left: 0;
    }
}



.typewriter {
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    animation: typing 2s steps(30, end), blink-caret .75s step-end infinite;
}
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #fff; }
}
.zoom-image {
    width: 600px;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.zoom-image:hover {
    transform: scale(1.1);
}

.terms-condition{
    margin-left: 50px;
    
}



header {
    background: linear-gradient(90deg, #1a2a6c, #1a2a6c);
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 100px;
}

header h1 {
    font-size: 32px;
    margin-bottom: 5px;
}

header p {
    font-size: 18px;
}

.content {
    background: white;
    padding: 40px 0;
}

.content h2 {
    color: #1a2a6c;
    margin-bottom: 10px;
    margin-top: 25px;
    padding-left: 10px;
}
.content h2:hover {
    text-decoration:  underline;
}

.content p {
    margin-bottom: 15px;
}

.content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.content ul li {
    margin-bottom: 8px;
}
.social-links {
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,0.2); /* Light transparent background */
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;


    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}

/* Hover Effects */
.social-links a:hover {
    color: #ffffff;
    background-color: #25d366; /* WhatsApp Green on Hover */
    transform: scale(1.1);
}

/* Specific Colors for each icon on hover */
.social-links a:nth-child(1):hover { background-color: #1877F2; } /* FB */
.social-links a:nth-child(2):hover { background-color: #E4405F; } /* Insta */
.social-links a:nth-child(3):hover { background-color: #25d366; }
.social-links a:nth-child(4):hover { background-color: #1877F2; } /* WA */


.footer {
    background-color: black;
    padding: 70px 0 20px;
    color: #ffffff;
}

.container {
    max-width: 1170px;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

/* Red underline effect */
.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #e91e63;
    height: 2px;
    width: 50px;
}

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

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    color: #bbbbbb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-col p {
    color: #bbbbbb;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
    font-size: 14px;
    color: #888;
}

/* Responsive adjustments */
@media(max-width: 767px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 574px) {
    .footer-col {
        width: 100%;
    }
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px; /* Niche se gap */
    right: 20px;  /* Right side se gap */
    background-color: #25d366; /* WhatsApp Green Color */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000; /* Taaki ye har cheez ke upar dikhe */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E; /* Hover karne par dark green */
    transform: scale(1.1); /* Thoda zoom hoga */
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}



