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

/* =========================
   RESET
========================= */

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

:root {
    --primary: #0B5C84;
    --secondary: #0F172A;
    --accent: #38BDF8;
    --white: #ffffff;
    --light: #f8fafc;
    --gray: #64748b;
    --shadow: 0 10px 30px rgba(0,0,0,.08);
}

body {
    background: var(--light);
    color: #111827;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    width: 100%;
    display: block;
}

/* =========================
   TOP BAR
========================= */

.top-bar {
    background: #07111f;
    color: white;
    padding: 10px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-right a {
    color: white;
    transition: .3s;
}

.top-right a:hover {
    color: var(--accent);
}

/* =========================
   NAVBAR
========================= */

.navbar{
    position: sticky;
    top: 0;
    z-index: 999;

    background: linear-gradient(
        135deg,
        #06142b 0%,
        #0a2247 50%,
        #06142b 100%
    );

    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    border-bottom: 2px solid rgba(212,175,55,.6);

    box-shadow:
    0 4px 20px rgba(0,0,0,.25),
    0 0 15px rgba(212,175,55,.15);
}

.logo h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--secondary);
}

.logo span {
    color: var(--primary);
}.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    display:block;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color:#ffffff;
    font-weight:600;
    position:relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: .4s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-btn {
    padding: 12px 25px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.nav-btn:hover {
    background: var(--secondary);
}

.menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* =========================
   MOBILE MENU
========================= */



/* =========================
   HERO SECTION WITH SLIDER
========================= */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    
}

.hero-slider{
    position:absolute;
    inset:0;
    z-index:0;
}

.slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    opacity:0;
    animation:heroSlider 15s infinite;
}

.slide1{
    background-image:url("/static/images/tax1.jpg");
    animation-delay:0s;
}

.slide2{
    background-image:url("/static/images/tax2.jpg");
    animation-delay:5s;
}

.slide3{
    background-image:url("/static/images/tax3.jpg");
    animation-delay:10s;
}

@keyframes heroSlider{
    0%{
        opacity:0;
    }

    8%{
        opacity:1;
    }

    30%{
        opacity:1;
    }

    38%{
        opacity:0;
    }

    100%{
        opacity:0;
    }
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:20px;
    color:#fff;
}

.hero-content h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.hero-stats{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

.stat h3{
    font-size:32px;
    margin-bottom:5px;
}

.stat span{
    color:#ddd;
}

@media(max-width:768px){

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-stats{
        gap:20px;
    }
}
/* =========================
   SECTION HEADER
========================= */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 17px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* =========================
   SERVICES SECTION
========================= */

.services {
    padding: 100px 8%;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: .4s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.service-card p {
    line-height: 1.8;
    color: var(--gray);
}

/* =========================
   WHY CHOOSE US
========================= */

.why-us {
    padding: 100px 8%;
    background: #f8fafc;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: .4s;
}

.why-card:hover {
    transform: translateY(-10px);
}

.why-card i {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 20px;
}

.why-card h3 {
    margin-bottom: 12px;
    color: var(--secondary);
}

.why-card p {
    line-height: 1.8;
    color: var(--gray);
}

/* =========================
   STATS SECTION
========================= */

.stats {
    padding: 90px 8%;
    background: linear-gradient(135deg, #0B5C84, #0F172A);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
    color: white;
}

.stat-box {
    padding: 20px;
}

.stat-box h2 {
    font-size: 50px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 17px;
}

/* =========================
   INDUSTRIES SECTION
========================= */

.industries {
    padding: 100px 8%;
    background: white;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.industry-card {
    background: #f8fafc;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: .4s;
}

.industry-card:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-10px);
}

.industry-card i {
    font-size: 45px;
    margin-bottom: 15px;
}

.industry-card h3 {
    margin-bottom: 10px;
}

.industry-card p {
    line-height: 1.7;
}

/* =========================
   PROCESS SECTION
========================= */

.process {
    padding: 100px 8%;
    background: #f1f5f9;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: .4s;
}

.process-step:hover {
    transform: translateY(-8px);
}

.number {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
}

.process-step h3 {
    margin-bottom: 15px;
    color: var(--secondary);
}

.process-step p {
    line-height: 1.8;
    color: var(--gray);
}

/* =========================
   CARD ANIMATIONS
========================= */

.service-card,
.why-card,
.industry-card,
.process-step {
    animation: fadeUp .8s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials {
    padding: 100px 8%;
    background: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f8fafc;
    padding: 35px;
    border-radius: 20px;
    border-left: 5px solid var(--primary);
    box-shadow: var(--shadow);
    transition: .4s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-card p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    color: #475569;
}

.testimonial-card h4 {
    color: var(--primary);
    font-size: 18px;
}

/* =========================
   CTA SECTION
========================= */

.cta {
    padding: 100px 8%;
    text-align: center;
    background: linear-gradient(135deg, #0B5C84, #0F172A);
    color: white;
}

.cta h2 {
    font-size: 52px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 35px;
    color: #dbeafe;
    line-height: 1.8;
}

/* =========================
   PAGE HERO
========================= */

.page-hero {
    background: linear-gradient(135deg, #0B5C84, #0F172A);
    padding: 120px 8%;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 60px;
    margin-bottom: 15px;
    font-weight: 800;
}

.page-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: #dbeafe;
}

/* =========================
   ABOUT PAGE
========================= */

.about-section {
    padding: 100px 8%;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-box {
    height: 450px;
    border-radius: 25px;
    background: linear-gradient(135deg, #0B5C84, #0F172A);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 40px;
    font-weight: 700;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.about-text p {
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--gray);
}

.about-features div {
    margin-bottom: 15px;
    font-weight: 500;
}

.about-features i {
    color: var(--primary);
    margin-right: 10px;
}

/* =========================
   MISSION SECTION
========================= */

.mission-section {
    padding: 100px 8%;
    background: #f8fafc;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.mission-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: .4s;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-card i {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 20px;
}

.mission-card h3 {
    margin-bottom: 15px;
    color: var(--secondary);
}

.mission-card p {
    line-height: 1.8;
    color: var(--gray);
}

/* =========================
   SERVICES PAGE
========================= */

.services-page {
    padding: 100px 8%;
    background: white;
}

.services-page .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.services-page .service-card {
    height: 100%;
}

.services-page .service-card ul {
    margin-top: 20px;
    text-align: left;
}

.services-page .service-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
    color: var(--gray);
}

.services-page .service-card ul li:last-child {
    border: none;
}

/* =========================
   BLOG SECTION
========================= */

.blog-section {
    padding: 100px 8%;
    background: #f8fafc;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 35px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: .4s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.blog-image {
    height: 260px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-content {
    padding: 30px;
}

.blog-date {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 14px;
    margin-bottom: 18px;
}

.blog-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--secondary);
}

.short-desc {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #475569;
}

.full-content {
    font-size: 16px;
    line-height: 1.9;
    color: #334155;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    background: white;
    padding: 80px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.no-posts h3 {
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.no-posts p {
    color: var(--gray);
}

/* =========================
   CONTACT PAGE
========================= */

.contact-info {
    padding: 80px 8%;
    background: white;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: #f8fafc;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: .4s;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-card i {
    font-size: 45px;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: var(--secondary);
}

.contact-card p {
    color: var(--gray);
    line-height: 1.8;
}

.contact-section {
    padding: 100px 8%;
    background: #f8fafc;
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-left h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.contact-left p {
    margin-bottom: 30px;
    color: var(--gray);
}

.contact-left form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-left input,
.contact-left select,
.contact-left textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: .3s;
}

.contact-left input:focus,
.contact-left select:focus,
.contact-left textarea:focus {
    border-color: var(--primary);
}

.contact-left textarea {
    min-height: 160px;
    resize: none;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-box h3 {
    margin-bottom: 15px;
    color: var(--secondary);
}

.contact-box p {
    line-height: 1.8;
    color: var(--gray);
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* =========================
   FOOTER
========================= */

footer {
    background: #07111f;
    color: white;
    padding: 80px 8% 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-grid h3,
.footer-grid h4 {
    margin-bottom: 20px;
}

.footer-grid p {
    line-height: 1.8;
    color: #cbd5e1;
}

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

.footer-grid a {
    color: #cbd5e1;
    transition: .3s;
}

.footer-grid a:hover {
    color: var(--accent);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.1);
    color: #94a3b8;
}

/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #25D366;
    color: white;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
    transition: .3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* =========================
   WHATSAPP CHAT POPUP
========================= */

.whatsapp-chat {
    position: fixed;
    bottom: 95px;
    right: 20px;
    width: 320px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
    z-index: 999;
    animation: slideUp .4s ease;
}

.chat-header {
    background: #25D366;
    color: #fff;
    padding: 15px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.chat-header i {
    font-size: 30px;
}

.chat-header h4 {
    margin: 0;
}

.chat-header span {
    font-size: 12px;
    opacity: .9;
}

.chat-body {
    padding: 20px;
}

.bot-msg {
    background: #f1f5f9;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.quick-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-options a {
    background: #f8fafc;
    padding: 12px;
    border-radius: 12px;
    color: #0F172A;
    font-weight: 500;
    transition: .3s;
    border: 1px solid #e2e8f0;
}

.quick-options a:hover {
    background: #25D366;
    color: #fff;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================

   CUSTOM SCROLLBAR
========================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #e2e8f0;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 20px;
}

/* =========================
   GLASS EFFECT
========================= */

.glass {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .15);
}

/* =========================
   FLOATING ANIMATION
========================= */

.floating {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px);  }
    50%       { transform: translateY(-15px); }
}

/* =========================
   TABLET — max 992px
========================= */

@media (max-width: 992px) {

    .hero-content h1 {
        font-size: 50px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   MOBILE — max 768px
========================= */
@media (max-width:768px){

    .top-bar{
        display:flex;
        flex-direction:column;
        padding:8px;
        font-size:11px;
    }

    .top-left{
        display:flex;
        justify-content:center;
        flex-wrap:wrap;
        gap:12px;
    }

    .top-right{
        display:none; /* social icons hide on mobile */
    }
}

   

    .hero {
        padding: 80px 20px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 240px;
        text-align: center;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat h3 {
        font-size: 26px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .page-hero h1 {
        font-size: 42px;
    }

    .about-text h2,
    .contact-left h2 {
        font-size: 32px;
    }

    .image-box {
        height: 300px;
        font-size: 28px;
    }

    .cta h2 {
        font-size: 34px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }


/* =========================
   SMALL MOBILE — max 480px
========================= */

@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 30px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .cta h2 {
        font-size: 28px;
    }

    .stat-box h2 {
        font-size: 36px;
    }

    .blog-content h3 {
        font-size: 22px;
    }

    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
        right: 15px;
        bottom: 15px;
    }
}


/* HERO BUTTONS */

.btn-primary{
    display:inline-block;
    padding:14px 32px;
    background:#2563eb;
    color:#fff;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
    box-shadow:0 8px 20px rgba(37,99,235,.35);
}

.btn-primary:hover{
    background:#1d4ed8;
    transform:translateY(-3px);
}

.btn-secondary{
    display:inline-block;
    padding:14px 32px;
    background:transparent;
    color:#fff;
    border:2px solid #fff;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.btn-secondary:hover{
    background:#fff;
    color:#0F172A;
}


.nav-links a.active{
    color:#2563eb;
    font-weight:700;
}

.nav-links a.active::after{
    width:100%;
    background:#2563eb;
}


.service-card,
.why-card,
.industry-card,
.process-step,
.testimonial-card,
.mission-card,
.contact-card{
    transition: all 0.35s ease;
}

.service-card:hover,
.why-card:hover,
.industry-card:hover,
.process-step:hover,
.testimonial-card:hover,
.mission-card:hover,
.contact-card:hover{
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}


.service-card:hover i,
.why-card:hover i,
.industry-card:hover i,
.process-step:hover .number,
.mission-card:hover i,
.contact-card:hover i{
    transform: scale(1.15) rotate(5deg);
    transition: 0.3s ease;
}


.service-card:hover,
.why-card:hover,
.industry-card:hover{
    box-shadow:
        0 20px 45px rgba(0,0,0,0.15),
        0 0 25px rgba(56,189,248,0.25);
}


.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:70px;      /* size adjust cheyyam */
    width:auto;
    display:block;
    transition:0.3s;
}

.logo img:hover{
    transform:scale(1.05);
}


.logo img{
    height:100px;
    width:100px;
    border-radius:50%;
    object-fit:cover;
    box-shadow:0 0 15px rgba(255,215,0,0.5);
}



.nav-links a{
    color:#ffffff;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#d4af37;
}

.nav-links a.active{
    color:#d4af37;
}


.logo img{
    height:100px;
    width:100px;
    border-radius:50%;
    object-fit:cover;

    box-shadow:
    0 0 10px rgba(212,175,55,.4),
    0 0 20px rgba(212,175,55,.25);
}



.menu-btn{
    display:none;
    font-size:28px;
    color:#ffffff;
    cursor:pointer;
}

@media (max-width:768px){

    .menu-btn{
        display:block;
        color:#fff;
        font-size:28px;
        z-index:1001;
    }

    .nav-links{
        position:absolute;
        top:100px;
        left:0;
        width:100%;

        background:#06142b !important;

        display:none;
        flex-direction:column;
        align-items:center;
        gap:20px;

        padding:25px 0;
        z-index:1000;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links li{
        list-style:none;
    }

    .nav-links a{
        color:#ffffff !important;
        font-size:18px;
        font-weight:600;
        text-decoration:none;
    }

    .nav-links a:hover{
        color:#d4af37 !important;
    }
}

.navbar{
    height:100px;
}


@media (max-width:768px){

    .navbar{
        position:relative;
        overflow:visible;
    }

    .nav-links{
        position:absolute;
        left:0;
        right:0;
        top:100%;

        background:#06142b;
        display:none;
        flex-direction:column;
        align-items:center;

        padding:25px 0;
        z-index:9999;
    }

    .nav-links.active{
        display:flex;
    }
}


.logo img{
    height:80px;
    width:80px;
    border-radius:50%;
    object-fit:cover;
} 


@media (max-width:768px){

    .menu-btn{
        display:block;
        color:#fff;
        font-size:28px;
    }

    .nav-links{
        position:absolute;
        left:0;
        right:0;
        top:100%;

        background:#06142b;

        display:none;
        flex-direction:column;
        align-items:center;

        padding:25px 0;
        z-index:9999;
    }

    .nav-links.active{
        display:flex;
    }
}


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

.developer-credit{
    font-size:13px;
    opacity:0.8;
    margin-top:5px;
}


.top-bar a,
.top-bar a:visited,
.top-bar a:hover,
.top-bar a:active {
    color: #fff;
    text-decoration: none;
}

footer{
    padding:50px 8% 15px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.footer-grid h3,
.footer-grid h4{
    font-size:18px;
    margin-bottom:12px;
}

.footer-grid p,
.footer-grid li,
.footer-grid a{
    font-size:14px;
    line-height:1.7;
}

.footer-bottom{
    margin-top:20px;
    padding-top:15px;
    font-size:13px;
}

.developer-credit{
    font-size:12px;
}


@media (max-width:768px){

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

}


/* Floating Buttons */

.whatsapp-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    z-index:9999;
}

.mail-btn{
    position:fixed;
    right:20px;
    bottom:95px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#ef4444;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    z-index:9999;
}

.call-menu{
    position:fixed;
    right:20px;
    bottom:170px;
    z-index:9999;
}

.call-btn{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.call-options{
    position:absolute;
    right:70px;
    bottom:0;
    display:none;
    flex-direction:column;
    gap:10px;
}

.call-options.show{
    display:flex;
}


/* WhatsApp */
.whatsapp-btn{
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
}

/* Gmail */
.mail-btn{
    position: fixed;
    right: 20px;
    bottom: 90px;
    z-index: 999;
}

/* Call */
.call-menu{
    position: fixed;
    right: 20px;
    bottom: 160px;
    z-index: 999;
}

@media (min-width: 769px){
    .call-menu{
        display: none;
    }
}

@media (min-width:769px){
    .call-menu{
        display:none;
    }
}

@media (max-width:768px){

    .call-options a{
        background:#ffffff;
        color:#111827;
        border-radius:12px;
        padding:12px 15px;
        border:1px solid #e5e7eb;
    }

}


.feedback-section{
    padding:80px 8%;
    background:#f8fafc;
}

.feedback-box{
    max-width:700px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    text-align:center;
}

.feedback-box h2{
    margin-bottom:15px;
}

.feedback-box p{
    margin-bottom:25px;
    color:#64748b;
}

.feedback-box input,
.feedback-box textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #e5e7eb;
    border-radius:10px;
}


.feedback-section{
    padding:60px 8%;
    background:#f8fafc;
}

.feedback-box{
    max-width:700px;
    margin:0 auto;
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.feedback-box h2,
.feedback-box h3{
    margin-bottom:10px;
}

.feedback-box p{
    margin-bottom:20px;
    color:#64748b;
}

.feedback-box form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.feedback-box input,
.feedback-box textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
}

.feedback-box textarea{
    resize:vertical;
    min-height:120px;
}

.feedback-box .btn-primary{
    width:fit-content;
    align-self:center;
}



.logo-text{
    color:#FFD700;
    font-size:26px;
    font-weight:800;
    letter-spacing:3px;
    text-transform:uppercase;
    font-family:Georgia, serif;

    text-shadow:
        0 0 5px #FFD700,
        0 0 10px #FFD700,
        0 0 20px #FFD700;

    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow{
    from{
        text-shadow:
            0 0 5px #FFD700,
            0 0 10px #FFD700;
    }

    to{
        text-shadow:
            0 0 10px #FFD700,
            0 0 20px #FFD700,
            0 0 30px #FFD700;
    }
}


.logo-link{
    display:flex;
    align-items:center;
    gap:18px;
    text-decoration:none;
}

.logo img{
    height:85px;
}


@media(max-width:768px){

    .logo-text{
        font-size:18px;
        letter-spacing:1px;
    }

    .logo img{
        height:60px;
    }
}



.logo-text{
    color:#d4af37;

    text-shadow:
        0 0 3px #d4af37,
        0 0 8px rgba(212,175,55,0.5);

    animation: glow 3s ease-in-out infinite alternate;
}


@keyframes glow{
    from{
        text-shadow:
            0 0 3px #d4af37,
            0 0 8px rgba(212,175,55,0.4);
    }

    to{
        text-shadow:
            0 0 5px #d4af37,
            0 0 12px rgba(212,175,55,0.6);
    }
}




@media (max-width:768px){

    .logo img{
        width:55px;
        height:55px;
        border-radius:50%;
        object-fit:cover;
    }

    .logo-text{
        font-size:18px;
    }
}


