@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@700&display=swap');

:root {
    --navy: #0D1B2A;
    --emerald: #2D6A4F;
    --gold: #D4AF37;
    --bg: #F8FAFC;
    --white: #FFFFFF;
    --text: #333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); padding-top: 80px; overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Full viewport height */
    margin: 0;}

main {
    flex: 1; /* Pushes footer down */
}
/* Header */
header {
    position: fixed; top: 0; width: 100%; height: 80px;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
    z-index: 1000; display: flex; align-items: center; border-bottom: 1px solid #eee;
}
.header-container { width: 90%; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; color: var(--navy); }
.accent-text { color: var(--emerald); }

.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--navy); font-weight: 500; transition: 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--emerald); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 25px; height: 3px; background: var(--navy); border-radius: 2px; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--navy) 0%, #1B263B 100%); color: var(--white); padding: 100px 5%; text-align: center; }
.hero h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 20px; }
.hero p { max-width: 700px; margin: 0 auto 30px; font-size: 1.1rem; opacity: 0.9; }

/* SIP Button */
.sip-btn {
    background: var(--emerald); color: white; padding: 16px 32px;
    border: none; border-radius: 8px; font-weight: 600; cursor: pointer; transition: 0.3s;
}
.sip-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(45, 106, 79, 0.3); }

/* Brand Slider */
.brand-slider { padding: 25px 0; background: white; overflow: hidden; }
.brand-track { display: flex; width: calc(250px * 10); animation: scroll 25s linear infinite; }
.slide { width: 400px; display: flex; justify-content: center; }
.slide img { height: 200px; filter: grayscale(0); opacity: 0.8; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-250px * 5)); } }

/* Modal */
.modal-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7);
    z-index: 2000; justify-content: center; align-items: center;
}
.modal-content { background: white; padding: 40px; border-radius: 15px; width: 90%; max-width: 450px; position: relative; text-align: center; }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 1.5rem; cursor: pointer; }
.modal-btns { display: flex; gap: 15px; margin-top: 25px; justify-content: center; }
.btn-call, .btn-wa { padding: 12px 20px; border-radius: 5px; text-decoration: none; color: white; font-weight: 600; flex: 1; }
.btn-call { background: var(--navy); }
.btn-wa { background: #25D366; }

/* WhatsApp Float */
.wa-float {
    position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white;
    width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center;
    align-items: center; font-size: 30px; z-index: 1000; box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background: var(--navy);
    color: var(--white);
    padding: 80px 5% 30px; /* Increased top padding for breathing room */

    border-top: 3px solid var(--gold); /* Subtle premium divider */
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-brand p {
    color: #cbd5e1; /* Soft gray-blue for readability */
    font-size: 0.95rem;
}

.footer-nav h4, .footer-contact h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold); /* Trust signal color */
}

.footer-nav ul {
    list-style: none;
}

.footer-nav a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: var(--white);
    padding-left: 5px; /* Subtle hover animation */
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #cbd5e1;
}

.footer-contact i {
    color: var(--gold);
    width: 20px; /* Fixed width for icon alignment */
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #94a3b8;
}
/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; position: absolute; top: 80px; left: 0; width: 100%;
        background: white; flex-direction: column; padding: 30px; text-align: center;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }
}


.section-title{
    text-align: center;
    padding: 25px 0;
}

/* Big Block Testimonial Styling */
/*.testimonial-big-block {*/
/*    background: var(--white);*/
/*    padding: 100px 5%;*/
/*    text-align: center;*/
/*}*/

/*.slider-wrapper {*/
/*    max-width: 1000px;*/
/*    margin: 40px auto;*/
/*    position: relative;*/
/*    background: var(--bg-light);*/
/*    border-radius: 20px;*/
/*    padding: 60px 40px;*/
/*    box-shadow: 0 15px 40px rgba(13, 27, 42, 0.08);*/
/*}*/

/*.testimonial-container {*/
/*    position: relative;*/
/*    height: 450px; !* Adjust based on content needs *!*/
/*    overflow: hidden;*/
/*}*/

/*.t-slide {*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    transition: opacity 0.6s ease-in-out;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

/*.t-slide.active {*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*}*/

/*.t-content {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 40px;*/
/*    text-align: left;*/
/*    width: 100%;*/
/*}*/

/*.client-img {*/
/*    width: 200px;*/
/*    height: 200px;*/
/*    border-radius: 15px;*/
/*    object-fit: cover;*/
/*    border: 5px solid var(--white);*/
/*    box-shadow: 0 5px 15px rgba(0,0,0,0.1);*/
/*}*/

/*.t-text p {*/
/*    font-size: 1.4rem;*/
/*    font-style: italic;*/
/*    color: var(--navy);*/
/*    margin-bottom: 20px;*/
/*}*/

/*.video-container {*/
/*    flex: 1;*/
/*    aspect-ratio: 16/9;*/
/*    background: #000;*/
/*    border-radius: 10px;*/
/*    overflow: hidden;*/
/*}*/

/*.video-container iframe {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/

/*!* Controls Styling *!*/
/*.slider-controls {*/
/*    margin-top: 30px;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    gap: 20px;*/
/*}*/

/*.ctrl-btn {*/
/*    background: var(--navy);*/
/*    color: white;*/
/*    border: none;*/
/*    width: 50px;*/
/*    height: 50px;*/
/*    border-radius: 50%;*/
/*    cursor: pointer;*/
/*    transition: 0.3s;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

/*.ctrl-btn:hover {*/
/*    background: var(--emerald);*/
/*}*/

/*!* Responsive Mobile Check *!*/
/*@media (max-width: 768px) {*/
/*    .t-content { flex-direction: column; text-align: center; }*/
/*    .testimonial-container { height: 600px; }*/
/*    .client-img { width: 120px; height: 120px; }*/
/*}*/

.testimonial-section {
    padding: 80px 5%;
    background: var(--bg-light);
}

.testimonial-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(13, 27, 42, 0.05);
    position: relative;
}

.testimonial-container {
    position: relative;
    min-height: 400px; /* Ensures height stability */
}

.t-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease-in-out;
}

.t-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative; /* Brings current slide into layout flow */
}

.t-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.t-media {
    flex: 1;
    max-width: 450px;
}

.t-media img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 10px 10px 0px var(--emerald);
}

.t-media iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 15px;
}

.t-info {
    flex: 1.2;
}

.t-info i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.t-info p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--navy);
    font-style: italic;
    margin-bottom: 25px;
}

.t-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.t-controls button {
    background: var(--navy);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.t-controls button:hover {
    background: var(--emerald);
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .t-content { flex-direction: column; text-align: center; }
    .t-media { max-width: 100%; }
}

.content-body{
    text-align: center;
    padding-bottom: 25px;
    max-width: 720px;
    margin: auto;
}

#logolink{
    text-decoration: none;

}


.footer-contact a{
    text-decoration: none;
    color: white;

}