/* ===============================
   Global Styles & Variables
=================================*/
:root {
  --blue: #0a66c2;
  --dark: #083a7a;
  --muted: #6b7280;
  --maxwidth: 1100px;
}

* { box-sizing:border-box; }
body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  margin:0;
  color:#1f2937;
  background:#fff;
}

.container {
  max-width: var(--maxwidth);
  margin: 0 auto;
  padding: 24px;
}

/* ===============================
   Header
=================================*/
.site-header {
  background:#fff;
  border-bottom:1px solid #eef2f7;
  position:sticky;
  top:0;
  z-index:20;
}

.header-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
}

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

.logo img { height:48px; }
.logo-text {
  font-size:22px;
  font-weight:700;
  color:var(--blue);
  letter-spacing:0.5px;
}

/* Desktop Menu */
.main-nav a {
  margin-left:18px;
  text-decoration:none;
  color:var(--dark);
  font-weight:600;
}

/* Hamburger button */
.menu-toggle {
  display:none;
  font-size:30px;
  background:none;
  border:none;
  cursor:pointer;
  color:var(--dark);
}

/* ===============================
   Hero Section
=================================*/
.hero {
  background: linear-gradient(90deg, rgba(10,102,194,0.08), rgba(10,102,194,0.02));
  padding:40px 0;
}

.hero-inner {
  display:flex;
  gap:30px;
  align-items:center;
}

.hero-copy { flex:1; }
.hero-copy h1 {
  font-size:34px;
  color:var(--dark);
  margin:0 0 12px;
}

.hero-copy p { color:var(--muted); line-height:1.6; }
.hero-image img {
  max-width:460px;
  width:100%;
  border-radius:8px;
  box-shadow:0 8px 22px rgba(10,102,194,0.12);
}

/* Buttons */
.btn {
  display:inline-block;
  background:var(--blue);
  color:#fff;
  padding:10px 16px;
  border-radius:8px;
  text-decoration:none;
  margin-top:12px;
  font-weight:700;
}

.btn-outline {
  background:none;
  border:2px solid var(--blue);
  color:var(--blue);
  margin-left:10px;
}

/* ===============================
   Sections & Cards
=================================*/
.about-preview, .services-preview, .contact-preview { padding:15px 0; }

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

.card {
  background:#fff;
  padding:18px;
  border-radius:10px;
  border:1px solid #f1f5f9;
  box-shadow:0 6px 18px rgba(15,23,42,0.03);
}

.card h3 { margin:0 0 8px;color:var(--dark); }

.contact-grid {
  display:grid;
  grid-template-columns:1fr 320px;
  gap:16px;
  align-items:start;
}

/* ===============================
   Footer
=================================*/
.site-footer {
  background:#f8fafc;
  padding:20px 0;
  margin-top:30px;
  border-top:1px solid #e6eef8;
}

.footer-left p, .footer-left h3 { margin:6px 0; }

/* ===============================
   Gallery
=================================*/
.gallery-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:12px;
}

.gallery-grid img {
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:8px;
}

/* ===============================
   Contact Page
=================================*/
.page { padding:30px 0; }

.contact-two-col {
  display:grid;
  grid-template-columns:1fr 360px;
  gap:20px;
  align-items:start;
}

.contact-form input,
.contact-form textarea {
  width:100%;
  padding:10px;
  margin:6px 0 12px;
  border-radius:6px;
  border:1px solid #dbe7f8;
}

.service-item {
  padding:14px 0;
  border-bottom:1px solid #eef6ff;
}

.whatsapp-float {
  position:fixed;
  right:18px;
  bottom:18px;
  background:var(--blue);
  color:#fff;
  padding:12px 14px;
  border-radius:50px;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 10px 30px rgba(10,102,194,0.18);
}

/* ===============================
   Policy Table
=================================*/
.policy-table table {
  box-shadow:0 4px 8px rgba(10,102,194,0.1);
  border-radius:8px;
  overflow:hidden;
}

.policy-table table a:hover {
  color:#083a7a;
  text-decoration:underline;
}

/* ===============================
   Team Section
=================================*/
.team-section { padding:40px 0; }

.team-section h2 {
  text-align:center;
  font-size:28px;
  margin-bottom:35px;
  color:var(--blue);
  font-weight:700;
}

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

.team-card {
  background:#fff;
  border:1px solid #d9e8ff;
  border-radius:16px;
  padding:20px;
  text-align:center;
  box-shadow:0 3px 12px rgba(0, 50, 150, 0.08);
  transition:0.3s ease;
}

.team-card:hover {
  transform:translateY(-6px);
  box-shadow:0 6px 18px rgba(0, 50, 150, 0.15);
}

.team-card img {
  width:160px;
  height:180px;
  object-fit:fill;
  padding:8px;
  background:#c7dfff;
  border-radius:8px;
  border:1px solid #d0e3ff;
  margin-bottom:12px;
}

.photo-placeholder {
  width:160px;
  height:180px;
  border-radius:14px;
  background:#eef5ff;
  border:2px dashed #aac6ff;
  display:flex;
  justify-content:center;
  align-items:center;
  color:var(--blue);
  margin:0 auto 12px;
  font-size:14px;
  font-weight:600;
}

.team-card h3 {
  font-size:20px;
  margin-bottom:4px;
  color:#1a1a1a;
}

.team-card .designation {
  font-weight:600;
  color:var(--blue);
  margin-bottom:4px;
}

.team-card .year {
  font-size:14px;
  color:#444;
  margin-bottom:10px;
}

.team-card .desc {
  font-size:14px;
  color:#555;
  line-height:1.45;
}

/* ===============================
   Mobile (≤880px)
=================================*/
@media (max-width: 880px) {

  .header-inner { padding:8px; }

  .hero-inner {
    flex-direction:column;
    text-align:center;
  }

  /* MOBILE MENU */
  .menu-toggle { display:block; }

  .main-nav {
    display:none;
    flex-direction:column;
    background:#fff;
    position:absolute;
    top:68px;
    right:0;
    width:220px;
    padding:15px 10px;
    box-shadow:0 4px 12px rgba(0,0,0,0.15);
    border-radius:0 0 0 12px;
    z-index:9999;
  }

  .main-nav a {
    display:block;
    padding:12px;
    margin:4px 0;
    color:var(--dark);
    border-bottom:1px solid #eef2f7;
  }

  /* toggle on */
  .main-nav.show { display:flex!important; }

  .contact-grid,
  .contact-two-col {
    grid-template-columns:1fr;
  }
}

/* 3 images per row */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* LIGHTBOX POPUP */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.lightbox:target {
  display: flex;
}
.fanova-container {
  text-align: left;      /* align left */
  margin-bottom: 150px;
}

.fanova-gif {
  width: 540px;          /* LARGE SIZE — adjust as needed */
  max-width: 100%;
  display: block;
}

.download-box {
  display: flex;
  flex-direction: column;   /* ensures vertical (one below another) */
  gap: 12px;                /* space between buttons */
  margin: 20px 0;
}

/* Left-aligned, vertical buttons */
.download-box .btn {
  display: block;           /* important: makes each button full row, not side-by-side */
  width: fit-content;       /* button shrinks to text size but stays left */
  padding: 12px 18px;
  background: #0d6efd;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

/* Hover effect */
.download-box .btn:hover {
  background: #0b5ed7;
  transform: translateX(5px);
}

/* Big gap after 3rd button */
.big-gap {
  height: 25px;
}
