/* ==================================================
   Sri Jayaram Infotech - Clean Optimized styles.css
   Updated:
   ✔ Duplicate entries removed
   ✔ Navbar top height reduced
   ✔ Same premium look retained
================================================== */

:root{
    --primary:#2563EB;
    --primary-dark:#1E40AF;
    --navy:#0f172a;
    --text:#1e293b;
    --muted:#64748b;
    --light:#f8fafc;
    --border:#e2e8f0;
    --radius:18px;
    --shadow:0 15px 35px rgba(0,0,0,.06);
    --shadow-hover:0 20px 45px rgba(0,0,0,.09);
}

/* ===============================
GLOBAL
=============================== */

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter,system-ui,-apple-system,'Segoe UI',Roboto,Arial,sans-serif;
    color:var(--text);
    background:#fff;
    padding-top:15px;
}

h1,h2,h3,h4,h5,h6{
    font-family:Poppins,Arial,sans-serif;
    font-weight:700;
    color:var(--text);
    margin:0;
}

p{
    color:var(--muted);
    line-height:1.7;
    margin-bottom:0;
}

a{
    text-decoration:none;
}

.container{
    max-width:1140px;
}

section{
    scroll-margin-top:80px;
}

.section{
    padding:60px 0;
}

.section-small{
    padding:45px 0;
}

h2{
    font-size:34px;
    margin-bottom:18px;
}

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

.premium-navbar{
    min-height:68px;
    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,.04);
    position:relative;
    z-index:9999;
}

.main-logo{
    height:54px;
    width:auto;
}

.navbar-nav .nav-link{
    font-size:15px;
    font-weight:600;
    color:var(--navy)!important;
    transition:.25s;
}

.navbar-nav .nav-link:hover{
    color:var(--primary)!important;
}

.navbar-toggler{
    border:0;
    box-shadow:none!important;
}

/* ===============================
BUTTONS
=============================== */

.btn{
    border-radius:12px;
    font-weight:600;
    transition:.25s;
}

.btn:hover{
    transform:translateY(-2px);
}

.btn-primary,
.nav-cta{
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    border:none;
    padding:12px 24px;
}

.btn-primary:hover{
    box-shadow:0 10px 20px rgba(37,99,235,.18);
}

/* ===============================
DROPDOWN / MEGA MENU
=============================== */

.dropdown-menu,
.mega-menu,
.training-menu{
    border:none;
    border-radius:18px;
    box-shadow:var(--shadow);
    z-index:10000;
}

.mega-dropdown{
    position:relative;
}

.mega-menu{
    width:960px;
    max-width:960px;
    left:50%!important;
    transform:translateX(-50%);
    padding:28px 32px;
}

.training-menu{
    width:780px;
    max-width:780px;
    left:50%!important;
    transform:translateX(-50%);
    padding:28px;
}

.dropdown-item{
    padding:10px 14px;
    border-radius:12px;
    color:#475569;
    transition:.25s;
}

.dropdown-item:hover{
    background:#eff6ff;
    color:var(--primary);
    transform:translateX(4px);
}

.mega-title,
.training-title{
    font-size:15px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:14px;
}

.training-footer{
    text-align:center;
    margin-top:18px;
    padding-top:18px;
}

/* Desktop hover */
@media(min-width:992px){
.mega-dropdown:hover .dropdown-menu{
    display:block;
}
}

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

.premium-hero{
    padding:80px 0 55px;
    background:linear-gradient(135deg,#2563EB 0%, #1E3A8A 60%, #172554 100%);
    color:#fff;
    position:relative;
    overflow:hidden;
    text-align:center;
}

.hero-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(70px);
    opacity:.2;
}

.hero-glow-1{
    width:240px;
    height:240px;
    background:#60A5FA;
    top:40px;
    left:-70px;
}

.hero-glow-2{
    width:280px;
    height:280px;
    background:#7C3AED;
    right:-70px;
    bottom:-80px;
}

.hero-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    color:#fff;
    font-size:14px;
}

.hero-title{
    font-size:56px;
    color:#fff;
    margin:20px auto;
}

.hero-subtext{
    max-width:760px;
    margin:auto;
    font-size:20px;
    color:#dbeafe;
}

.hero-trust{
    margin-top:25px;
    display:flex;
    justify-content:center;
    gap:24px;
    flex-wrap:wrap;
    color:#fff;
}

/* ===============================
CARDS
=============================== */

.card,
.feature-box,
.testimonial-box,
.seo-card{
    border:none;
    border-radius:18px;
    padding:24px;
    box-shadow:var(--shadow);
    transition:.25s;
    background:#fff;
}

.card:hover,
.feature-box:hover,
.testimonial-box:hover,
.seo-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow-hover);
}

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

.contact-info-box{
    background:linear-gradient(135deg,#2563EB,#1E3A8A);
    color:#fff;
    padding:40px;
    border-radius:24px;
}

.contact-form-box{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:var(--shadow);
}

.form-control{
    min-height:46px;
    border-radius:12px;
    border:1px solid #dbe3ee;
    padding:12px;
}

.form-control:focus{
    border-color:#2563EB;
    box-shadow:0 0 0 3px rgba(37,99,235,.08);
}

textarea.form-control{
    min-height:140px;
}

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

.cta{
    background:linear-gradient(135deg,#f8fafc,#eef2ff);
    padding:70px 0;
    text-align:center;
}

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

.site-footer{
    background:#0f172a;
    color:#cbd5e1;
    padding:55px 0 25px;
}

.site-footer h5,
.site-footer h6{
    color:#fff;
}

.site-footer a{
    color:#cbd5e1;
}

.site-footer a:hover{
    color:#fff;
}

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

@media(max-width:991px){

body{
    padding-top:68px;
}

.premium-navbar{
    min-height:64px;
}

.main-logo{
    height:48px;
}

.navbar-collapse{
    background:#fff;
    padding:18px;
    border-radius:16px;
    margin-top:14px;
    box-shadow:var(--shadow);
}

.mega-menu,
.training-menu{
    width:100%!important;
    max-width:100%!important;
    left:0!important;
    transform:none!important;
    padding:18px;
}

.hero-title{
    font-size:42px;
}

.hero-subtext{
    font-size:18px;
}

}

@media(max-width:768px){

body{
    padding-top:66px;
}

.main-logo{
    height:46px;
}

.section{
    padding:50px 0;
}

.hero-title{
    font-size:34px;
}

.hero-subtext{
    font-size:16px;
}

.hero-actions .btn,
.btn{
    width:100%;
    margin-bottom:12px;
}

.hero-trust{
    flex-direction:column;
    gap:10px;
}

h2{
    font-size:28px;
}

.contact-info-box,
.contact-form-box{
    padding:24px;
}

.site-footer{
    text-align:center;
}

}
/* ===============================
PREMIUM CONTACT SECTION V2
=============================== */

.contact-premium{
    background:#f8fafc;
    padding:80px 0;
}

/* LEFT PANEL */
.contact-left-panel{
    background:linear-gradient(135deg,#2563EB,#1E3A8A);
    color:#fff;
    border-radius:28px;
    padding:45px;
    box-shadow:0 25px 50px rgba(37,99,235,.20);
    height:100%;
}

.contact-left-panel h3,
.contact-left-panel h6,
.contact-left-panel p,
.contact-left-panel span,
.contact-left-panel i{
    color:#fff !important;
}

.contact-left-panel p{
    opacity:.92;
}

.contact-badge{
    display:inline-block;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.14);
    font-size:14px;
    font-weight:600;
}

.contact-feature-item{
    display:flex;
    gap:16px;
    margin-bottom:26px;
}

.icon-box{
    width:48px;
    height:48px;
    min-width:48px;
    border-radius:14px;
    background:rgba(255,255,255,.14);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.contact-left-panel hr{
    border-color:rgba(255,255,255,.18);
}

/* RIGHT PANEL */
.contact-right-panel{
    background:#ffffff;
    padding:45px;
    border-radius:28px;
    box-shadow:0 20px 45px rgba(15,23,42,.08);
}

.contact-right-panel h4{
    margin-bottom:28px;
}

.contact-right-panel label{
    font-weight:600;
    margin-bottom:8px;
    display:block;
}

.contact-right-panel .form-control{
    min-height:52px;
    border-radius:14px;
    border:1px solid #dbe3ee;
    padding:14px;
}

.contact-right-panel textarea.form-control{
    min-height:180px;
}

.contact-right-panel .form-control:focus{
    border-color:#2563EB;
    box-shadow:0 0 0 4px rgba(37,99,235,.08);
}

.contact-right-panel .btn{
    border-radius:14px;
    font-weight:700;
    font-size:16px;
    background:linear-gradient(135deg,#2563EB,#1E40AF);
    border:none;
}

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

.contact-left-panel,
.contact-right-panel{
    padding:28px;
    border-radius:20px;
}

}
/* CONTACT MODAL TEXT FIX */

.modal-content p,
.modal-content h4,
.modal-content h5,
.modal-content h6,
.modal-content span,
.modal-content li {
    color: inherit;
}

.modal-content .text-white,
.modal-content .text-white * {
    color: #fff !important;
}

/* ==========================================
CONSULTATION MODAL
========================================== */

#consultationModal .modal-content {
    border-radius: 24px;
    overflow: hidden;
}

#consultationModal .modal-header {
    padding: 24px 32px 0;
}

#consultationModal .modal-body {
    padding: 32px;
}

#consultationModal .consultation-left {
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    border-radius: 20px;
    padding: 32px;
    color: #ffffff;
    height: 100%;
}

#consultationModal .consultation-left h4,
#consultationModal .consultation-left p,
#consultationModal .consultation-left span,
#consultationModal .consultation-left i {
    color: #ffffff !important;
}

#consultationModal .consultation-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

#consultationModal .form-control,
#consultationModal select,
#consultationModal textarea {
    border-radius: 16px;
    padding: 16px 18px;
    border: 1px solid #dbe2ea;
    box-shadow: none;
}

#consultationModal .form-control:focus,
#consultationModal select:focus,
#consultationModal textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 0.15rem rgba(37,99,235,.15);
}

#consultationModal .btn-primary {
    border-radius: 14px;
    padding: 14px;
    font-weight: 600;
}

#consultationModal .btn-close {
    box-shadow: none;
}