/*
Theme Name: SRJ Ventures
Theme URI: https://srjspacon.com
Author: SRJ Ventures Pvt. Ltd.
Author URI: https://srjspacon.com
Description: Custom WordPress theme for SRJ Ventures — Infrastructure Engineering & Consultancy
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary
Text Domain: srj-ventures
*/

/* ═════════════════════════════════════════════
   ROOT VARIABLES
═════════════════════════════════════════════ */
:root{
  --bg:#FFF6F6;
  --gradient:linear-gradient(135deg,#4284DB,#29EAC4);
  --text-dark:#1a1a1a;
  --text-light:#ffffff;
  --text-muted:#6b7280;

  --container:1400px;
  --radius:16px;
}

/* ═════════════════════════════════════════════
   RESET
═════════════════════════════════════════════ */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

html,
body{
  width:100%;
  overflow-x:hidden;
}

body{
  font-family:'DM Sans',sans-serif;
  background:var(--bg);
  color:var(--text-dark);
  line-height:1.6;
}

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

a{
  text-decoration:none;
}

body.admin-bar{
  margin-top:0 !important;
  padding-top:0 !important;
}

/* ═════════════════════════════════════════════
   GLOBAL
═════════════════════════════════════════════ */
section{
  padding:180px 60px;
}

.container{
  width:100%;
  max-width:var(--container);
  margin:auto;
}

.section-title{
  font-size:clamp(28px,4vw,42px);
  font-weight:700;
  line-height:1.2;
  margin-bottom:20px;
}

.section-label{
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:15px;
}

.section-label span{
  background:var(--gradient);
  color:#fff;
  padding:8px 18px;
  border-radius:30px;
  font-size:13px;
  font-weight:600;
}

.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--gradient);
  color:#fff;
  padding:14px 24px;
  border-radius:40px;
  font-size:15px;
  font-weight:600;
  transition:.3s ease;
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* ═════════════════════════════════════════════
   HERO
═════════════════════════════════════════════ */
#hero{
  position:relative;
  height:100vh;
  min-height:650px;
  overflow:hidden;
  padding: 0px;
}

#hero video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
}

/* ═════════════════════════════════════════════
   ABOUT
═════════════════════════════════════════════ */
#about{
  width:100%;
  padding:100px 60px;
}

.about-container{
  max-width:1400px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

.about-image{
  flex:1;
}

.about-image img{
  width:100%;
  border-radius:14px;
}

.about-text{
  flex:1;
}

.about-text h2{
  font-size:clamp(28px,4vw,42px);
  margin-bottom:24px;
  line-height:1.2;
}

.about-text p{
  font-size:16px;
  color:#333;
  margin-bottom:18px;
}

/* ═════════════════════════════════════════════
   SERVICES
═════════════════════════════════════════════ */
#services{
  background:radial-gradient(circle,#53EDEA,#2A7B9B);
  padding:80px 60px;
}

.services-header{
  text-align:center;
  margin-bottom:50px;
}

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

.service-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  padding:30px 25px;
  box-shadow:0 5px 20px rgba(0,0,0,.06);
  transition:.3s ease;
  position: relative;
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.service-icon{
  width: 100%;
  height: 400px;
  background: #eef4ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  overflow: hidden;
}

.service-icon img{
  width:100%;
  height:100%;
  object-fit:cover;
  display: block;
}

.service-card h3{
  font-size:clamp(22px,3vw,32px);
  text-align:center;
  margin-bottom:14px;
  line-height:1.3;
}

.service-card p{
  font-size:15px;
  color:#555;
  margin-bottom:16px;
}

.service-link{
  color:#1d4ed8;
  font-weight:600;
  transition:.3s;
}

.service-link:hover{
  color:#000;
}

/* ═════════════════════════════════════════════
   VMV
═════════════════════════════════════════════ */
#vmv{
  background:#f5f7fa;
  padding:100px 60px;
}

.vmv-header .section-title{
  text-align:center;
}

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

.vmv-card{
  position:relative;
  overflow:hidden;
  border-radius:16px;
}

.vmv-card img{
  width:100%;
  height:380px;
  object-fit:cover;
  transition:.4s ease;
}

.vmv-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.75),rgba(0,0,0,.15));
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
}

.vmv-overlay h3{
  color:#fff;
  font-size:30px;
  margin-bottom:16px;
}

.vmv-btn{
  background:#2f6fed;
  color:#fff;
  padding:12px 22px;
  border-radius:8px;
  font-size:14px;
  font-weight:600;
}

.vmv-btn:hover{
  background:#1e4ed8;
}

.vmv-card:hover img{
  transform:scale(1.06);
}

/* ═════════════════════════════════════════════
   TRUSTED
═════════════════════════════════════════════ */
#trusted{
  background:linear-gradient(to right,#085078,#85D8CE);
  padding:120px 40px;
  overflow:hidden;
}

.trusted-container{
  max-width:1400px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:40px;
}

/* .trusted-text{
  flex:0 0 320px;
} */

.trusted-text h2{
  color:#fff;
  font-size:clamp(28px,4vw,40px);
  line-height:1.4;
}

.trusted-divider{
  width:1px;
  height:100px;
  background:rgba(255,255,255,.4);
}

.trusted-logos-wrapper{
  overflow:hidden;
  flex:1;
}

.trusted-logos-track{
  display:flex;
  align-items:center;
  gap:60px;
  width:max-content;
  animation:scrollLogos 20s linear infinite;
}

.trusted-logos-track img{
  height:120px;
  width:auto;
  object-fit:contain;
}

@keyframes scrollLogos{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

/* ═════════════════════════════════════════════
   JOIN
═════════════════════════════════════════════ */
#join{
  position:relative;
  overflow:hidden;
  min-height:420px;
}

.join-bg{
  position:absolute;
  inset:0;
}

.join-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.join-overlay{
  position:absolute;
  inset:0;
  background:rgba(255,255,255,.55);
}

.join-wrapper{
  position:relative;
  z-index:2;
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  padding:40px 60px;
}

.join-card{
  max-width:650px;
  background:#f4b400;
  padding:35px;
  border-radius:20px;
  box-shadow:0 20px 40px rgba(0,0,0,.2);
}

.join-title{
  font-size:clamp(24px,3.5vw,38px);
  font-weight:800;
  line-height:1.3;
}

.join-desc{
  margin:15px 0 25px;
  font-size:15px;
  color:#000;
}

.join-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#1e2a44;
  color:#fff;
  padding:12px 22px;
  border-radius:8px;
  font-weight:600;
  transition:.3s;
}

.join-btn:hover{
  background:#000;
}

/* ═════════════════════════════════════════════
   FOOTER
═════════════════════════════════════════════ */
footer{
  background:#111;
  color:#fff;
  padding:70px 60px;
}

.footer-grid{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.footer-links{
  list-style:none;
}

.footer-links li{
  margin-bottom:10px;
}

.footer-links a{
  color:#ccc;
  font-size:14px;
  transition:.3s;
}

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

/* ═════════════════════════════════════════════
   LARGE TABLET
═════════════════════════════════════════════ */
@media(max-width:1024px){

  section{
    padding:80px 40px;
  }

  #hero{
    height:80vh;
    min-height:550px;
  }

  .about-container{
    flex-direction:column;
    text-align:center;
  }

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

  .vmv-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .vmv-card:last-child{
    grid-column:1/-1;
  }

  .trusted-container{
    flex-direction:column;
    text-align:center;
  }

  .trusted-divider{
    width:100px;
    height:1px;
  }

  .join-wrapper{
    justify-content:center;
  }

  .join-card{
    max-width:100%;
  }

  .footer-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

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

  section{
    padding:70px 24px;
  }

  #about,
  #services,
  #vmv{
    padding-left:24px;
    padding-right:24px;
  }

  .about-container{
    gap:35px;
  }

  .trusted-logos-track img{
    height:90px;
  }

  .vmv-card img{
    height:300px;
  }

  .join-card{
    padding:35px 28px;
  }
}

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

  section{
    padding:50px 16px;
  }

  #hero{
    height:65vh;
    min-height:420px;
  }

  .section-title{
    font-size:26px;
  }

  /* ABOUT */
  #about{
    padding:50px 16px;
  }

  .about-container{
    flex-direction:column;
    gap:24px;
    text-align:center;
  }

  .about-text p{
    font-size:14px;
  }

  /* SERVICES */
  #services{
    padding:50px 16px;
  }

  .services-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .service-card{
    padding:18px;
  }

  .service-card h3{
    font-size:22px;
  }

  .service-card p{
    font-size:14px;
  }

  /* VMV */
  #vmv{
    padding:50px 16px;
  }

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

  .vmv-card img{
    height:240px;
  }

  .vmv-overlay h3{
    font-size:22px;
  }

  /* TRUSTED */
  #trusted{
    padding:60px 16px;
  }

  .trusted-container{
    flex-direction:column;
    gap:24px;
    text-align:center;
  }

  .trusted-divider{
    display:none;
  }

  .trusted-text h2{
    font-size:24px;
  }

  .trusted-logos-track{
    gap:30px;
  }

  .trusted-logos-track img{
    height:65px;
  }

  /* JOIN */
  #join{
    min-height:auto;
  }

  .join-wrapper{
    min-height:auto;
    padding:40px 16px;
  }

  .join-card{
    width:100%;
    padding:24px 18px;
  }

  .join-title{
    font-size:24px;
  }

  .join-desc{
    font-size:14px;
  }

  .join-btn{
    width:100%;
    text-align:center;
  }

  /* FOOTER */
  footer{
    padding:50px 16px;
  }

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

  .footer-links a{
    font-size:13px;
  }
}

/* ═════════════════════════════════════════════
   SMALL MOBILE
═════════════════════════════════════════════ */
@media(max-width:400px){

  .section-title{
    font-size:22px;
  }

  .about-text h2,
  .join-title{
    font-size:22px;
  }

  .service-card h3{
    font-size:20px;
  }

  .trusted-text h2{
    font-size:20px;
  }

  .btn-primary,
  .join-btn{
    font-size:13px;
    padding:12px 18px;
  }
}