/* --- Root Variables --- */
:root {
    --primary: #0a2342; /* Deep Navy from PDF Header */
    --accent: #d4af37;  /* Professional Gold */
    --text-main: #333;
    --text-light: #f4f4f4;
    --gray-bg: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

/* --- Global Styles --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text-main); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Header & Nav --- */
.top-bar { background: var(--primary); color: var(--white); font-size: 0.8rem; padding: 8px 0; text-align: center; }
.top-bar span { margin: 0 15px; }

.main-nav { background: var(--white); padding: 20px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo h1 { font-size: 1.5rem; letter-spacing: 2px; color: var(--primary); }
.logo .tm { font-size: 0.6rem; vertical-align: top; }
.logo .accent { color: var(--accent); }
.sub-logo { font-size: 0.7rem; color: #777; font-style: italic; }

nav ul { display: flex; gap: 25px; align-items: center; }
nav a:hover { color: var(--accent); transition: var(--transition); }
.btn-primary { background: var(--primary); color: var(--white); padding: 10px 20px; border-radius: 4px; }

/* --- Hero Section --- */
.hero { 
   
    background-size: cover; 
    color: var(--white); 
    padding: 0px 0; 
    text-align: center;
}


/* --- Animation Keyframes --- */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-150px * 5)); }
}

/* --- Section Enhancements --- */
.animate-fade-in-left { animation: fadeInLeft 1s ease forwards; }
.animate-fade-in-right { animation: fadeInRight 1s ease forwards; }
.animate-slide-up { animation: slideUp 0.8s ease forwards; opacity: 0; animation-fill-mode: forwards; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 80px 0;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 20px 20px 0px var(--accent);
}

.stats-grid {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    background: var(--primary);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    text-align: center;
}

/* --- Service Card Enhancements --- */
.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content { padding: 20px; }

/* --- Team Section --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    border-radius: 8px;
    filter: grayscale(100%);
    transition: var(--transition);
    margin-bottom: 15px;
}

.team-member:hover img { filter: grayscale(0%); transform: scale(1.02); }

/* --- Auto Logo Slider --- */
.logo-slider-container {
    padding: 60px 0;
    overflow: hidden;
    background: #fff;
    margin-bottom: 20px;
}

.logo-slider {
    width: 100%;
    position: relative;
}

.logo-track {
    display: flex;
    width: calc(150px * 10);
    animation: scrollLogos 20s linear infinite;
}

.slide {
    width: 150px;
    padding: 0 20px;
}

.slide img {
    width: 100%;
    filter: grayscale(100%);
    opacity: 0.6;
}

.slide img:hover { opacity: 1; filter: grayscale(0); }

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-image img { box-shadow: 10px 10px 0px var(--accent); }
}



.hero h2 { font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 15px; }
.hero p { font-size: 1.2rem; letter-spacing: 3px; color: var(--accent); text-transform: uppercase; }

/* --- Values Grid --- */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h3 { font-size: 2rem; color: var(--primary); }
.highlight { color: var(--accent); }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.value-card { text-align: center; padding: 40px; border: 1px solid #eee; border-radius: 8px; transition: var(--transition); }
.value-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.value-card .icon { font-size: 2.5rem; color: var(--accent); font-weight: 700; margin-bottom: 15px; }

/* --- Services --- */
.services-bg { background: var(--gray-bg); padding: 80px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.service-item { background: var(--white); padding: 30px; border-left: 5px solid var(--primary); }
.service-item h4 { margin-bottom: 10px; color: var(--primary); }

/* --- Credentials --- */
.creds-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; padding: 40px 0; }
.cred-badge { border: 2px solid var(--accent); padding: 15px 30px; border-radius: 50px; text-align: center; }
.cred-badge strong { display: block; color: var(--primary); }

/* --- Footer --- */
footer { background: var(--primary); color: var(--white); padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h5 { color: var(--accent); margin-bottom: 20px; font-size: 1.1rem; }
.footer-col ul li { margin-bottom: 10px; opacity: 0.8; }
.copyright { text-align: center; border-top: 1px solid #1a3a5f; padding-top: 20px; font-size: 0.8rem; opacity: 0.6; }

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .nav-flex { flex-direction: column; gap: 20px; }
    .hero h2 { font-size: 2rem; }
    nav ul { flex-direction: column; gap: 10px; }
}

/* --- Footer Styling --- */
.main-footer {
    background: #0a192f; /* Deep Midnight Blue */
    color: #ffffff;
    padding-top: 0;
    position: relative;
    font-family: 'Inter', sans-serif;
}

/* CTA Bridge - Sits half-on/half-off the footer */
.footer-cta {
    background: #d4e1f1; /* Gold Accent */
    padding: 40px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.cta-content h4 { font-size: 1.8rem; margin-bottom: 5px; color: #0a192f; }
.cta-content p { color: #2d3748; opacity: 0.9; }

.btn-footer {
    background: #0a192f;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-footer:hover {
    background: #ffffff;
    color: #0a192f;
    transform: translateY(-3px);
}

/* Main Footer Grid */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
    gap: 40px;
    padding-bottom: 60px;
    margin-top: -30px; /* Adjustment for CTA */
}

.footer-logo { font-size: 1.4rem; letter-spacing: 1px; margin-bottom: 20px; }
.footer-logo span { color: white; margin-left: 5px; }
.footer-desc { font-size: 0.9rem; opacity: 0.7; line-height: 1.7; margin-bottom: 20px; }

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent, #b52424);
}

.contact-item { display: flex; gap: 12px; margin-bottom: 15px; font-size: 0.9rem; opacity: 0.8; }
.contact-item .icon { color: var(--accent, #b52424); }

.footer-links li { margin-bottom: 12px; }
.footer-links a { 
    opacity: 0.7; 
    transition: 0.3s; 
    font-size: 0.9rem;
    display: inline-block;
}
.footer-links a:hover { 
    opacity: 1; 
    color: var(--accent, #b52424); 
    transform: translateX(5px); 
}

/* Social Links */
.social-links { display: flex; gap: 15px; }
.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}
.social-links a:hover { background: var(--accent, #b52424); color: #0a192f; }

/* Bottom Bar */
.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-main-grid { grid-template-columns: 1fr 1fr; }
    .footer-cta { flex-direction: column; text-align: center; gap: 20px; transform: translateY(-20%); }
}

@media (max-width: 600px) {
    .footer-main-grid { grid-template-columns: 1fr; }
    .bottom-flex { flex-direction: column; text-align: center; gap: 10px; }
}

/* --- Contact & Map Layout --- */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0; /* Merged look */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Form Styling */
.contact-form-card {
    background: #ffffff;
    padding: 50px;
    z-index: 2;
}

.form-header h3 {
    font-size: 2rem;
    color: var(--primary, #0a2342);
    margin-bottom: 10px;
}

.input-group { margin-bottom: 20px; }

.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fdfdfd;
}

.input-group input:focus {
    border-color: #25d366;
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.1);
}

.btn-whatsapp {
    width: 100%;
    padding: 18px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* Map Styling */
.map-container {
    position: relative;
    min-height: 500px;
    filter: grayscale(0.2);
    transition: filter 0.5s ease;
}

.map-container:hover { filter: grayscale(0); }

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
}

.location-badge {
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #0a2342;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-form-card { padding: 30px; }
}

.slider {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden; /* Hides the images that aren't active */
  border-radius: 10px;
  position: relative;
}

.slides {
  display: flex;
  width: 400%; /* 4 images = 400% width */
  transition: transform 0.6s ease-in-out;
}

.slide {
  width: 25%; /* Each slide is 1/4th of the 400% container */
  position: relative;
}

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

.caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  font-family: sans-serif;
  border-radius: 5px;
}

/*vision mision*/

:root {
    --accent: #2563eb;
    --bg-dark: #0f172a;
    --text-muted: #64748b;
}

.brand-identity {
    padding: 80px 10%;
    background-color: #f8fafc;
    font-family: 'Inter', sans-serif;
}

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

.info-block {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

/* Subtle hover to show it's active */
.info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.info-block h3 {
    font-size: 1.5rem;
    color: var(--bg-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.info-block p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Specific Credential Styling */
.highlight {
    background: var(--bg-dark);
    color: white;
}

.highlight h3 { color: white; }

.cred-list {
    list-style: none;
    padding: 0;
}

.cred-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.cred-list i {
    color: #38bdf8;
}

/*/read more/*/
/* Hide extra text initially */
.more-text {
    display: none;
    transition: all 0.5s ease;
}

/* Button Styling */
.read-more-btn {
    background: none;
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #2563eb;
    color: white;
}

.read-more-btn i {
    font-size: 0.8rem;
    transition: transform 0.4s ease;
}

/* State when expanded */
.read-more-btn.active i {
    transform: rotate(180deg);
}

/*team*/

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* This ensures 5 members look balanced */
    gap: 30px;
    padding-top: 40px;
}

.team-member {
    flex: 1 1 calc(20% - 30px); /* Tries to fit 5 in a row */
    min-width: 220px;
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-member img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: cover;
}

/* Founder Specific Style */
.founder-card {
    border-top: 4px solid #2563eb;
    background: #f8fafc;
}

.founder-message {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 15px;
}

.more-text {
    display: none; /* Controlled by jQuery */
}

.read-more-btn {
    background: none;
    border: none;
    color: #2563eb;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.8rem;
    padding-top: 5px;
}

.designation {
    color: #2563eb;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

