/* :root{
    --primary-color: #0B2545;
    --secondary-color: #e9ab55;
    --gold-hover: #b38b46;
    --text-dark:#134074;
    --text-muted: #61758A;
    --bg-light: #F4F6F9;
    --white: #ffffff;
    --black: #050C1A; 
    --transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
} */
:root {
    --primary-color: #0C2357;    
    --secondary-color: #F1CB72;   
    --gold-hover: #A47C2D;        
    --text-dark: #183A7E;         
    --text-muted: #5C6E91;        
    --bg-light: #F7F9FC;          
    --white: #FFFFFF;             
    --black: #040D21;             
    --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

*{
    font-family:'Times New Roman' ,Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
}
a,button,select,input,.nav-link,#menu-btn,.file-label,.box{
    transition: var(--transition);
}
*::selection{
    background-color: var(--secondary-color);
    color: var(--primary-color);
}
html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 9rem;
}
::-webkit-scrollbar{
    height: 0.5rem;
    width: 1rem;
}
::-webkit-scrollbar-track{
    background-color: var(--bg-light);
}
::-webkit-scrollbar-thumb{
    background-color: var(--secondary-color);
    border-radius: 5rem;
}
::-webkit-scrollbar-thumb:hover{
    background-color: var(--gold-hover);
}
body{
    background-color: var(--white);
    color: var(--black);
}

/* start Global classes*/
.container{
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
}
.section-padding{
    padding: 12rem 0 8rem;
}
.main-heading{
    text-align: center;
    font-size: 3.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.main-heading span{
    color: var(--secondary-color);
}
.main-sub-heading{
    text-align: center;
    font-size: 1.6rem;
    color: var(--text-muted);
    max-width: 65rem;
    margin: 0 auto 5rem;
    line-height: 1.8;
}
/* end globale classes */
/* start help center and whatsapp buuton */
.faq-wrapper {
    max-width: 85rem;
    margin: 0 auto;
    background: var(--white);
    padding: 3.5rem;
    border-radius: 2rem;
    box-shadow: 0 1.5rem 4rem rgba(12, 35, 87, 0.08);
}

.bot-welcome-msg {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2.2rem 2.6rem;
    border-radius: 1.2rem;
    margin-bottom: 3.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.8rem;
    line-height: 1.7;
    text-transform: none; 
    box-shadow: 0 0.8rem 2rem rgba(12, 35, 87, 0.15);
}

.bot-welcome-msg i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 50%;
    width: 4.2rem;
    height: 4.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    display: inline-block;
    animation: iconSubtlePulse 2s infinite ease-in-out;
}

@keyframes iconSubtlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.faq-box {
    border: 0.1rem solid #E1E8F5;
    border-radius: 1.2rem;
    margin-bottom: 2rem;
    overflow: hidden;
    background: var(--bg-light);
    transition: var(--transition);
}

.faq-box:last-child {
    margin-bottom: 0;
}

.faq-box:hover {
    border-color: var(--secondary-color);
    background: var(--white);
    box-shadow: 0 0.6rem 2rem rgba(12, 35, 87, 0.04);
}

.faq-box.active {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 1rem 2.5rem rgba(12, 35, 87, 0.07);
}

.faq-label {
    padding: 2.2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-label span {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.faq-label span i {
    color: var(--secondary-color); 
    width: 2.5rem;
    text-align: center;
    font-size: 2rem;
    display: inline-block; 
    transition: var(--transition);
}

/* --- ICON ANIMATIONS START --- */

/* Item 1: Certified Stamp Animation */
@keyframes stampPress {
    0% { transform: scale(1) translateY(0); }
    30% { transform: scale(0.85) translateY(-0.3rem); }
    50% { transform: scale(1.15) translateY(0.2rem); }
    100% { transform: scale(1) translateY(0); }
}
.faq-box:hover .fa-stamp,
.faq-box.active .fa-stamp {
    animation: stampPress 0.5s ease-in-out;
    color: var(--gold-hover);
}

/* Item 2: Delivery Speed/History Clock Spin */
@keyframes clockSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}
.faq-box:hover .fa-history,
.faq-box.active .fa-history {
    animation: clockSpin 1s linear;
    color: var(--gold-hover);
}

/* Item 3: Quality Check Checkmark Pop */
@keyframes checkPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}
.faq-box:hover .fa-check-circle,
.faq-box.active .fa-check-circle {
    animation: checkPop 0.4s ease-in-out;
    color: var(--gold-hover);
}

/* Item 4: Legal Court Gavel Swing */
@keyframes gavelSwing {
    0% { transform: rotate(0deg); }
    30% { transform: rotate(-25deg); }
    70% { transform: rotate(15deg); }
    100% { transform: rotate(0deg); }
}
.faq-box:hover .fa-gavel,
.faq-box.active .fa-gavel,
.service-card:hover .fa-gavel {
    animation: gavelSwing 0.6s ease-in-out;
    color: var(--gold-hover);
}

/* Item 5: Large Volume Briefcase Bounce */
@keyframes briefcaseBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-0.6rem); }
}
.faq-box:hover .fa-briefcase,
.faq-box.active .fa-briefcase,
.service-card:hover .fa-briefcase {
    animation: briefcaseBounce 0.5s ease-in-out;
    color: var(--gold-hover);
}

/* Item 6: Global Languages Globe Spin */
@keyframes globeSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.faq-box:hover .fa-globe,
.faq-box.active .fa-globe {
    animation: globeSpin 1.2s ease-in-out;
    color: var(--gold-hover);
}

/* --- ICON ANIMATIONS END --- */

.arrow-icon {
    font-size: 1.4rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.faq-box:hover .arrow-icon {
    color: var(--gold-hover);
}

.faq-box.active .arrow-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer p {
    padding: 0 2.5rem 2.5rem 6.6rem; 
    margin: 0;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.5rem;
    text-transform: none; 
}

.floating-ai-btn {
    position: fixed;
    bottom: 3rem;
    left: 3rem;
    width: 8rem;
    height: 8rem;
    background-color: var(--primary-color);
    border: 0.2rem solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 0.8rem 2.5rem rgba(12, 35, 87, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.floating-ai-btn i {
    color: var(--secondary-color);
    font-size: 2.4rem;
    z-index: 2;
    display: inline-block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.floating-ai-btn:hover i {
    color: var(--primary-color);
    transform: rotate(360deg);
}

.floating-ai-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--gold-hover);
    transform: translateY(-0.5rem) scale(1.05);
    box-shadow: 0 1.2rem 3rem rgba(164, 124, 45, 0.4);
}

.floating-ai-btn .pulse-ring {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 50%;
    border: 0.2rem solid var(--secondary-color);
    animation: globalPulseRing 2.5s cubic-bezier(0.25, 1, 0.5, 1) infinite;
    z-index: 1;
    pointer-events: none;
}

.floating-whatsapp-btn {
    position: fixed;
    bottom: 3.5rem;
    right: 3.5rem; 
    height: 8rem;
    width: 8rem;
    background-color: #25D366; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1rem 3rem rgba(37, 211, 102, 0.3);
    z-index: 9999; 
    text-decoration: none;
    transition: var(--transition);
}

.floating-whatsapp-btn i {
    color: var(--white);
    font-size: 3.2rem;
    z-index: 2;
    display: inline-block;
    animation: whatsappIconWobble 3s ease-in-out infinite;
}

@keyframes whatsappIconWobble {
    0%, 100% { transform: scale(1) rotate(0deg); }
    5%, 15% { transform: scale(1.1) rotate(-10deg); }
    10%, 20% { transform: scale(1.1) rotate(10deg); }
    25% { transform: scale(1) rotate(0deg); }
}

.floating-whatsapp-btn:hover {
    transform: translateY(-0.5rem) scale(1.05);
    background-color: #128C7E; 
    box-shadow: 0 1.5rem 3rem rgba(18, 140, 126, 0.4);
}

.floating-whatsapp-btn:hover i {
    animation: none; 
}

.floating-whatsapp-btn .whatsapp-pulse {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    border: 0.2rem solid #25D366;
    animation: globalPulseRing 2.5s cubic-bezier(0.25, 1, 0.5, 1) infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes globalPulseRing {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { opacity: 0.4; }
    100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 991px) {
    .faq-wrapper {
        padding: 2.5rem 2rem;
    }
    
    .faq-label {
        padding: 1.8rem 1.5rem;
        font-size: 1.5rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 2rem 5.6rem;
        font-size: 1.4rem;
    }
}

@media (max-width: 450px) {
    .faq-wrapper {
        padding: 2rem 1.5rem;
        border-radius: 1.2rem;
    }

    .bot-welcome-msg {
        padding: 1.8rem 1.5rem;
        font-size: 1.4rem;
        gap: 1.2rem;
        margin-bottom: 2.5rem;
    }

    .bot-welcome-msg i {
        width: 3.6rem;
        height: 3.6rem;
        font-size: 1.8rem;
    }

    .faq-label {
        font-size: 1.4rem;
        gap: 1rem;
    }

    .faq-label span {
        gap: 1rem;
    }

    .faq-label span i {
        font-size: 1.7rem;
        width: 2rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.8rem 4.5rem;
    }

    .floating-ai-btn,
    .floating-whatsapp-btn {
        position: fixed !important;
        z-index: 999999 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        -webkit-transform: translate3d(0, 0, 0); 
        transform: translate3d(0, 0, 0);
    }

    .floating-ai-btn { 
        bottom: 2rem !important; left: 2rem !important; 
        height: 6.5rem !important; width: 6.5rem !important; 
    }
    
    .floating-whatsapp-btn {
        bottom: 2rem !important; right: 2rem !important;
        height: 6.5rem !important; width: 6.5rem !important;
    }

    .floating-ai-btn i { font-size: 2.2rem !important; }

    .floating-whatsapp-btn i { font-size: 2.6rem !important; }
    .floating-ai-btn i,.floating-whatsapp-btn i {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1000000 !important;
    }
}
/* end whatsapp button and help center */
/* start heading */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 0.4rem 2rem rgba(11,37,69,0.08);
    border-bottom: 0.2rem solid var(--bg-light);
}
.header .header-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 1.5rem 3rem; 
    max-width: 120rem;
    width: 100%;
}
.header .header-flex .logo{
    font-size: 4.0rem; 
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.05rem;
    display: flex;
    align-items: center;
}
.header .header-flex .logo span{
    color: var(--secondary-color);
}
.header .header-flex .logo .logo-img {
    height: 5.5rem; 
    vertical-align: middle;
    margin-right: 1rem;
}
.header .header-flex .navbar {
    display: flex;
    align-items: center;
}
.header .header-flex .navbar a{
    margin-left: 2.5rem;
    color: var(--text-dark);
    font-size: 1.7rem;
    font-weight: 600;
}
.header .header-flex .navbar a:hover,
.header .header-flex .navbar a.nav-link.active{
    color: var(--secondary-color);
}
.header .header-flex .navbar .nav-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 0.5rem;
}
.header .header-flex .navbar .nav-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

#menu-btn{
    cursor: pointer;
    color: var(--primary-color);
    font-size: 2.8rem;
    display: none;
    position: relative;
    z-index: 1001;
}
/* end heading */



/* start quote */
.quote-section {
    position: relative;
    background-image: url('../images/quote.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 12rem 0 8rem;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, var(--secondary-color) 0.1px, transparent 1px),
        radial-gradient(circle, var(--white) 0.1px, transparent 1px);
    background-size: 4rem 4rem, 6rem 6rem;
    background-position: 0 0, 3rem 3rem;
    z-index: 1;
    opacity: 0.15;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    from { background-position: 0 0, 3rem 3rem; }
    to { background-position: 4rem 4rem, 9rem 9rem; }
}

.quote-bg-overlay-gold {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 35, 87, 0.95) 0%, rgba(164, 124, 45, 0.7) 100%);
    z-index: 1;
}

.quote-flex-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    gap: 6rem;
    flex-wrap: wrap;
}

.quote-text-column {
    flex: 1 1 45rem;
}

.main-heading-quote {
    font-size: 4.2rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left;
    text-shadow: 0 0.2rem 1rem var(--black);
}

.main-heading-quote span {
    color: var(--secondary-color); 
}

.main-sub-heading-quote {
    font-size: 1.7rem;
    color: var(--white); 
    line-height: 1.8;
    max-width: 50rem;
    text-shadow: 0 0.1rem 0.5rem var(--black);
}

.quote-container {
    flex: 1 1 50rem;
    max-width: 55rem;
    background-color: rgba(4, 13, 33, 0.75); 
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 4.5rem;
    border-radius: 1.2rem;
    margin: 0;
    transition: var(--transition);
}

.interactive-glow {
    position: relative;
    border: 0.15rem solid rgba(241, 203, 114, 0.2) !important; 
    box-shadow: 0 3rem 6rem rgba(4, 13, 33, 0.4);
}

.interactive-glow:hover {
    transform: translateY(-0.8rem) scale(1.015); 
    border-color: var(--secondary-color) !important;
    box-shadow: 0 4rem 7rem rgba(4, 13, 33, 0.6), 
                0 0 3.5rem rgba(241, 203, 114, 0.25) !important;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.input-box {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.input-box label,
.input-box .field-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color); 
}

.input-box input,
.input-box select {
    width: 100%;
    padding: 1.3rem 1.6rem;
    font-size: 1.5rem;
    background-color: rgba(255, 255, 255, 0.08);
    border: 0.1rem solid rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    color: var(--white);
    transition: var(--transition);
}

.input-box select option {
    background-color: var(--primary-color);
    color: var(--white);
}

.input-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.input-box input:focus,
.input-box select:focus {
    border-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 1.2rem rgba(241, 203, 114, 0.2);
    outline: none;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.file-upload input[type="file"] {
    display: none;
}

.file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.6rem;
    background-color: rgba(241, 203, 114, 0.1);
    border: 0.15rem dashed var(--secondary-color);
    border-radius: 0.5rem;
    font-size: 1.6rem;
    color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
}

.file-label:hover {
    border-color: var(--white);
    color: var(--primary-color);
    background-color: var(--secondary-color);
}

.submit-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-hover) 100%);
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    padding: 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
}

/* end quote */


/* start services styling */
.services-section {
    background-color: var(--white); 
    position: relative;
}

.services-section .main-heading {
    color: var(--primary-color);
}

.services-section .main-sub-heading {
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 3.5rem;
    align-items: stretch;
}

.service-card {
    position: relative;
    min-height: 42rem;
    border-radius: 1.2rem;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 4rem 3rem;
    box-shadow: 0 1rem 3rem rgba(12, 35, 87, 0.08); 
    z-index: 1;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1; 
    transform: scaleX(-1); 
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-legal::before { background-image: url('../images/services1.jpg'); }
.service-medical::before { background-image: url('../images/service2.jpg'); }
.service-interpretation::before { background-image: url('../images/services3.jpg'); }
.service-corporate::before { background-image: url('../images/service4.jpg'); }

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--black) 0%, rgba(12, 35, 87, 0.85) 65%, rgba(12, 35, 87, 0.3) 100%);
    transition: var(--transition);
    z-index: 2;
}

.service-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.service-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    display: inline-block;
}

.service-card h3 {
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 0.02rem;
}

.service-card p {
    font-size: 1.45rem;
    color: var(--bg-light); 
    line-height: 1.7;
    text-transform: none;
}

.service-card:hover {
    transform: translateY(-0.8rem);
    box-shadow: 0 2rem 4rem rgba(12, 35, 87, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%; 
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg); 
    z-index: 4; 
    transition: none;
}

.service-card:hover::after {
    left: 150%;
    transition: left 0.8s ease-in-out;
}

.trusted-badge-box {
    margin-top: 6rem;
    background: var(--bg-light); 
    padding: 3.5rem 4rem;
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    border: 0.1rem solid rgba(12, 35, 87, 0.08); 
}

.badge-icon {
    font-size: 4.5rem;
    color: var(--secondary-color);
}

.badge-text h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.badge-text p {
    font-size: 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-transform: none;
}

.scroll-trigger {
    animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: calc(var(--delay) * 0.15s);
    opacity: 0;
    will-change: transform, opacity;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(6rem) rotateX(4deg);
        filter: blur(0.2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
        filter: blur(0);
    }
}

.scroll-trigger.appeared {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    filter: blur(0);
}
/* end services styling */

/* Testimonials Section Start */
.testimonials {
    overflow: hidden;
    position: relative;
    background: linear-gradient(
        180deg, 
        rgba(12, 35, 87, 0.95) 0%, 
        rgba(4, 13, 33, 0.92) 100%
    ), 
    url('../images/ourclients.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.testimonials .main-heading {
    color: var(--white);
}

.testimonials .main-sub-heading {
    color: rgba(255, 255, 255, 0.7);
}

input[name="testimonial-slider"] {
    display: none;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 0.1rem solid rgba(255, 255, 255, 0.08);
    border-left: 0.4rem solid var(--secondary-color);
    padding: 4rem 3rem;
    border-radius: 0.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 1rem 3rem rgba(4, 13, 33, 0.3);
    backdrop-filter: blur(1rem);
}

.quote-icon {
    font-size: 6rem;
    color: var(--secondary-color);
    line-height: 1;
    font-family: 'Times New Roman', serif;
    margin-top: -2rem;
}

.client-review {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 3rem;
    text-transform: none; 
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.client-avatar {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    border: 0.2rem solid var(--secondary-color);
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.client-name {
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 700;
}

.client-company {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
}

.carousel-dots {
    display: none;
    justify-content: center;
    gap: 1.2rem;
}

.dot-btn {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background-color: var(--white);
    opacity: 0.25;
    cursor: pointer;
}

.dot-btn:hover {
    opacity: 0.6;
}

@media (max-width: 991px) {
    .testimonials {
        background-attachment: scroll; 
    }

    .testimonials-wrapper {
        display: flex;
        width: 300%; 
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        gap: 0;
        padding: 0;
    }

    .testimonial-card {
        width: 33.333%; 
        flex-shrink: 0; 
        padding: 4rem 2.5rem;
        box-sizing: border-box;
        margin: 0;
    }

    .carousel-dots {
        display: flex;
    }

    #slide-1:checked ~ .testimonials-wrapper { transform: translateX(0%); }
    #slide-2:checked ~ .testimonials-wrapper { transform: translateX(-33.333%); }
    #slide-3:checked ~ .testimonials-wrapper { transform: translateX(-66.666%); }

    #slide-1:checked ~ .carousel-dots .dot-btn:nth-child(1),
    #slide-2:checked ~ .carousel-dots .dot-btn:nth-child(2),
    #slide-3:checked ~ .carousel-dots .dot-btn:nth-child(3) {
        background-color: var(--secondary-color);
        opacity: 1;
    }
}
/* end testimoials */


/* start about section */
.about-section {
    position: relative;
    padding: 12rem 0 8rem;
    background-image: url('../images/about.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.about-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 13, 33, 0.35); 
    z-index: 1;
}

.about-container-full {
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-content-full {
    max-width: 90rem;
    margin: 0 auto;
    text-align: center;
}

.main-heading-full {
    font-size: 4rem;
    color: var(--white); 
    font-weight: 700;
    margin-bottom: 3rem;
    text-shadow: 0 0.2rem 1.5rem var(--black); 
}

.main-heading-full span {
    color: var(--secondary-color); 
}

.about-text-full {
    font-size: 1.7rem;
    color: var(--bg-light); 
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-transform: none;
    text-align: justify;
    text-shadow: 0 0.2rem 1rem var(--black); 
}

.about-stats-full {
    display: flex;
    justify-content: center;
    gap: 6rem;
    margin-top: 5rem;
    flex-wrap: wrap;
}

.stat-item-full {
    background-color: rgba(4, 13, 33, 0.85); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem 5rem;
    border-radius: 1rem;
    box-shadow: 0 2rem 4rem rgba(4, 13, 33, 0.5);
    border: 0.15rem solid rgba(241, 203, 114, 0.3); 
    border-top: 0.4rem solid var(--secondary-color);
    transition: var(--transition);
    flex: 1 1 25rem;
    max-width: 35rem;
}

.stat-item-full:hover {
    transform: translateY(-0.8rem);
    border-color: var(--white);
    box-shadow: 0 3rem 5rem rgba(4, 13, 33, 0.7), 0 0 2.5rem rgba(241, 203, 114, 0.25);
}

.stat-item-full h3 {
    font-size: 3.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-item-full p {
    color: var(--secondary-color); 
    font-size: 1.5rem;
    font-weight: 600;
}


/* end about section */

/* start why-us styling */
.why-us-section {
    background-color: var(--bg-light); 
    position: relative;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 4rem;
    margin-top: 2rem;
    animation: whyUsGridReveal 1s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.2s;
}

.why-card {
    background-color: var(--white); 
    padding: 5rem 4rem;
    border-radius: 1.2rem;
    border: 0.2rem solid rgba(12, 35, 87, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-card i {
    width: 6rem;
    height: 6rem;
    background-color: var(--bg-light);
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
}

.why-card h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02rem;
}

.why-card p {
    font-size: 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
    text-transform: none;
}

.why-card:hover {
    transform: translateY(-0.6rem);
    border-color: var(--secondary-color);
    box-shadow: 0 2rem 4rem rgba(12, 35, 87, 0.06);
}

.why-card:hover i {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: rotate(5deg);
}

@keyframes whyUsGridReveal {
    from { opacity: 0; transform: translateY(3rem); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 450px) {
    .about-text-full {
        text-align: center; 
        font-size: 1.5rem;
    }
    .stat-item-full {
        padding: 3rem 2rem;
    }
}
/* end why-us styling */
/* start contact section  */
.contact-section {
    position: relative;
    padding: 12rem 0 8rem;
    background-image: url('../images/contact.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}



.contact-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 13, 33, 0.35);
    z-index: 1;
}

.contact-container-full {
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-header {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-header .main-heading {
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 0 0.2rem 1.5rem var(--black); 
}

.contact-header .main-heading span {
    color: var(--secondary-color);
}

.main-sub-heading-contact {
    font-size: 1.7rem;
    color: var(--white);
    max-width: 60rem;
    margin: 1.5rem auto 0;
    line-height: 1.8;
    text-shadow: 0 0.2rem 1rem var(--black);
}

.contact-flex-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 6rem;
    flex-wrap: wrap;
}

.contact-info-column {
    flex: 1 1 40rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    justify-content: center;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: rgba(4, 13, 33, 0.85); 
    border: 0.15rem solid rgba(241, 203, 114, 0.2); 
    padding: 2.5rem;
    border-radius: 0.8rem;
    box-shadow: 0 1.5rem 3rem rgba(4, 13, 33, 0.5);
    transition: var(--transition);
}

.contact-card.interactive-link {
    text-decoration: none;
    cursor: pointer;
}

.contact-card:hover {
    background-color: rgba(12, 35, 87, 0.95); 
    border-color: var(--secondary-color);
    transform: translateX(1rem);
}

.contact-card .icon-box {
    height: 5.5rem;
    width: 5.5rem;
    background-color: rgba(241, 203, 114, 0.15);
    border: 0.1rem solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    transition: var(--transition);
}

.contact-card.interactive-link:hover:nth-child(1) .icon-box {
    background-color: #25D366; 
    color: var(--white);
    border-color: #25D366;
}

.contact-card.interactive-link:hover.email-link .icon-box {
    background-color: var(--secondary-color); 
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.contact-card .card-details h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-card .card-details p {
    font-size: 1.5rem;
    color: var(--bg-light);
    text-transform: none;
}

.contact-form-column {
    flex: 1 1 50rem;
    max-width: 60rem;
    background-color: rgba(4, 13, 33, 0.85); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 4.5rem;
    border-radius: 1.2rem;
    border: 0.15rem solid rgba(241, 203, 114, 0.2);
    box-shadow: 0 2rem 5rem rgba(4, 13, 33, 0.6);
    transition: var(--transition);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.contact-form textarea {
    width: 100%;
    padding: 1.3rem 1.6rem;
    font-size: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 0.1rem solid rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    color: var(--white);
    resize: none;
    transition: var(--transition);
}

.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form textarea:focus {
    border-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 1.2rem rgba(241, 203, 114, 0.2);
    outline: none;
}

.contact-submit-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-hover) 100%);
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    padding: 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-top: 1rem;
    animation: contactSubtlePulse 2.5s infinite ease-in-out; 
}

.contact-submit-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 0.8rem 2rem rgba(255, 255, 255, 0.3);
    animation: none;
}

@keyframes contactSubtlePulse {
    0% { box-shadow: 0 0.5rem 1.5rem rgba(241, 203, 114, 0.2); }
    50% { box-shadow: 0 0.8rem 2.5rem rgba(241, 203, 114, 0.4); }
    100% { box-shadow: 0 0.5rem 1.5rem rgba(241, 203, 114, 0.2); }
}

/* end contact section */





/* start footer */
.footer {
    background-color: var(--primary-color);
    padding-top: 6rem;
    border-top: 0.4rem solid var(--secondary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-box .logo {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    display: inline-block;
    margin-bottom: 2rem;
}

.footer-box .logo span {
    color: var(--secondary-color);
}

.footer-box .logo .logo-img {
    height: 3.5rem;
    vertical-align: middle;
    margin-right: 1rem;
}

.footer-box .footer-desc {
    font-size: 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-transform: none;
}

.footer-box .share {
    display: flex;
    gap: 1.5rem;
}

.footer-box .share a {
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    font-size: 1.6rem;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    text-align: center;
    border-radius: 0.5rem;
    transition: var(--transition); 
}

.footer-box .share a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-0.3rem);
}

.footer-box h3 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.footer-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4rem;
    height: 0.2rem;
    background-color: var(--secondary-color);
}

.footer-box .links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-box .links a {
    font-size: 1.6rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    transition: var(--transition); 
}

.footer-box .links a i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-right: 0.8rem;
    transition: var(--transition); 
}

.footer-box .links a:hover {
    color: var(--secondary-color);
}

.footer-box .links a:hover i {
    transform: translateX(0.5rem);
}

.footer-box .info {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.footer-box .info p,
.footer-box .info p a {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-transform: none;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-box .info p i {
    color: var(--secondary-color);
    margin-right: 1.2rem;
    font-size: 1.6rem;
}

.footer-box .newsletter-txt {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-transform: none;
}

.newsletter-form {
    display: flex;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 0.1rem solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
    width: 100%;
    background: none;
    font-size: 1.5rem;
    color: var(--white);
    padding: 1rem;
    border: none;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-size: 1.6rem;
    height: 4rem;
    width: 4.5rem;
    line-height: 4rem;
    border-radius: 0.5rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--gold-hover);
    transform: scale(1.05); 
}

.credit {
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.05);
    font-size: 1.5rem;
    color: var(--text-muted);
    text-transform: none;
}

.credit span {
    color: var(--secondary-color);
}

@media (max-width: 500px) {
    .footer {
        text-align: center;
    }
    .footer-box h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-box .share,
    .footer-box .links a,
    .footer-box .info p {
        justify-content: center;
    }
    .footer-box .links a i {
        margin-right: 0.5rem;
    }
}
/* end footer */





@media (max-width: 991px) {
    html {
        font-size: 55%; 
        scroll-padding-top: 8rem;
    }

    .section-padding {
        padding: 10rem 0 6rem;
    }
    
    #menu-btn {
        display: block; 
    }

    .header .header-flex .navbar {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background-color: var(--white);
        border-top: 0.1rem solid var(--bg-light);
        border-bottom: 0.2rem solid var(--bg-light);
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); 
        transition: 0.4s ease-in-out;
    }

    .header .header-flex .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .header .header-flex .navbar a {
        margin: 1.5rem 3rem;
        font-size: 2rem;
    }

    .header .header-flex .navbar .nav-btn {
        text-align: center;
        margin: 1.5rem 3rem 0;
    }

    .quote-flex-container,
    .contact-flex-grid {
        flex-direction: column;
        gap: 4rem;
    }

    .quote-text-column,
    .quote-container,
    .contact-info-column,
    .contact-form-column {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .main-heading-quote,
    .contact-header .main-heading {
        text-align: center;
        font-size: 3.6rem;
    }

    .main-sub-heading-quote {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .services-grid,
    .why-us-grid {
        grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
        gap: 3rem;
    }

    .testimonials {
        overflow: hidden;
        background-attachment: scroll; 
    }

    .testimonials-wrapper {
        display: flex;
        width: 300%; 
        transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        gap: 0;
    }

    .testimonial-card {
        width: 33.333%; 
        padding: 4rem 2.5rem;
        margin: 0; 
        flex-shrink: 0;
    }

    .carousel-dots {
        display: flex;
    }

    #slide-1:checked ~ .testimonials-wrapper { transform: translateX(0%); }
    #slide-2:checked ~ .testimonials-wrapper { transform: translateX(-33.333%); }
    #slide-3:checked ~ .testimonials-wrapper { transform: translateX(-66.666%); }

    #slide-1:checked ~ .carousel-dots .dot-btn:nth-child(1),
    #slide-2:checked ~ .carousel-dots .dot-btn:nth-child(2),
    #slide-3:checked ~ .carousel-dots .dot-btn:nth-child(3) {
        background-color: var(--secondary-color);
        opacity: 1;
        transform: scale(1.2);
    }

    .trusted-badge-box {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    @keyframes universalFadeLeft {
        from { opacity: 0; transform: translateX(-2rem); filter: blur(0.2rem); }
        to { opacity: 1; transform: translateX(0); filter: blur(0); }
    }
    @keyframes universalFadeRight {
        from { opacity: 0; transform: translateX(2rem); filter: blur(0.2rem); }
        to { opacity: 1; transform: translateX(0); filter: blur(0); }
    }
    @keyframes splitRevealLeft {
        from { opacity: 0; transform: translateY(3rem); filter: blur(0.2rem); }
        to { opacity: 1; transform: translateY(0); filter: blur(0); }
    }
    @keyframes splitRevealRight {
        from { opacity: 0; transform: translateY(3rem); filter: blur(0.2rem); }
        to { opacity: 1; transform: translateY(0); filter: blur(0); }
    }
}


@media (max-width: 768px) {
    html {
        font-size: 50%; 
    }

    .main-heading,
    .main-heading-full {
        font-size: 3.2rem;
    }
    
    .input-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .quote-container,
    .contact-form-column {
        padding: 3rem 2rem; 
    }
    
    .services-grid {
        gap: 2rem; 
    }

    .service-card {
        padding: 3rem 2.5rem; 
        min-height: 38rem; 
    }

    .trusted-badge-box {
        padding: 2.5rem 2rem; 
        margin-top: 4rem;
    }
    
    .about-stats-full {
        gap: 3rem;
    }

    .stat-item-full {
        padding: 2.5rem 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}


@media (max-width: 450px) {
    html {
        font-size: 45%;
    }

    .header .header-flex .logo {
        font-size: 2.8rem; 
    }

    .header .header-flex .logo .logo-img {
        height: 4.2rem; 
    }

    .services-grid {
        grid-template-columns: 1fr; 
        gap: 1.5rem;
    }

    .service-card {
        padding: 2.5rem 2rem;
        min-height: 35rem;
    }

    .service-card h3 {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 2.5rem 2rem;
        text-align: left;
    }

    .client-review {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .quote-icon {
        font-size: 4rem;
        margin-bottom: 1rem;
    }
}
