/*
Theme Name: Sudish World
Author: Sudish World
Version: 1.0
*/

*{margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif}
body{background:#0f172a;color:#fff}

/* HEADER */
/* HEADER */
header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 5%;
  background:#020617;
  flex-wrap:nowrap;
}

/* LOGO */
.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

/* LOGO IMAGE */
.logo img{
  height:50px;
  width:auto;
}

/* NAV */
nav{
  display:flex;
  gap:20px;
}

nav a{
  color:#fff;
  text-decoration:none;
  font-size:16px;
}


/* Parent menu item */
.menu-item {
  position: relative;back
  display: inline-block;
}

/* Submenu hidden by default */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0a1a2f;
  min-width: 180px;
  display: none;
  flex-direction: column;
  border-radius: 5px;
  overflow: hidden;
  z-index: 999;
}

/* Submenu links */
.submenu a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
}

.submenu a:hover {
  background: #1c2f4a;
}

/* Show on hover (desktop) */
.menu-item:hover .submenu {
  display: block;
}



/* MENU BUTTON */
.menu-toggle{
  display:none;
  font-size:24px;
  color:#fff;
  cursor:pointer;
}

/* ===== LAPTOP (1024px) ===== */
@media(max-width:1024px){

  .logo img{
    height:35px;
  }

  nav a{
    font-size:14px;
  }
}

/* ===== TABLET (768px) ===== */
@media(max-width:768px){

  header{
    flex-wrap:wrap;
  }

  .menu-toggle{
    display:block;
  }

  nav{
    width:100%;
    flex-direction:column;
    display:none;
    background:#020617;
    margin-top:10px;
    padding:10px;
    border-radius:10px;
  }

  nav.active{
    display:flex;
  }

  nav a{
    padding:10px;
    border-bottom:1px solid rgba(255,255,255,0.1);
  }

  .logo img{
    height:35px;
  }
}

/* ===== MOBILE (480px) ===== */
@media(max-width:480px){


  .logo img{
    height:25px;
  }

  .menu-toggle{
    font-size:20px;
  }
}


/* ===== SMALL MOBILE (320px) ===== */
@media(max-width:320px){
 
  .logo img{
    height:22px;
  }
}
/* Hero */
.hero{
height:90vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
background:linear-gradient(135deg,#1e3a8a,#0ea5e9)
}
.hero h2{font-size:3rem;margin-bottom:10px}
.hero p{opacity:0.9}

/* Section */
.section{padding:50px 8%}
.section h2{text-align:center;margin-bottom:40px}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px
}

/* Cards */
.card{
background:rgba(255,255,255,0.05);
border-radius:10px;
overflow:hidden;
transition:0.4s;
border:1px solid rgba(255,255,255,0.1)
}
.card:hover{
transform:translateY(-10px);
background:rgba(56,189,248,0.2)
}

.card img{
width:100%;
height:200px;
object-fit:cover
}

.card-content p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align:justify;
}
.card-content h3 {
  color: #ffc107;
}
.card-content{padding:20px}


/* Main footer */
.site-footer {
  font-family: Arial;
  color: #fff;
}

/* 🔹 Top Footer (Dark Blue) */
.footer-top {
  background: #021f46; 
  padding: 40px 20px;
}

/* 🔹 Bottom Footer (Black) */
.footer-bottom {
  background: #000; /* black */
  border-top: 1px solid #222;
  padding: 15px 20px;
}

/* Grid */
.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-col h3 {
  color: #ffc107;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;sl
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #ffc107;
}

/* Bottom layout */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-right a {
  color: #ffc107;
  text-decoration: none;
}

/* Mobile */
@media(max-width:768px){
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}

.slider{
  position:relative;
  height:75vh;
  overflow:hidden;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  opacity:0;
  transition:0.7s;
}

.slide img{
  width:100%;
  height:100%;
  object-fit:fill;
}

.slide.active{opacity:1}

.caption{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  color:#fff;
  font-size:24px;
  background:rgba(0,0,0,0.5);
  padding:10px 20px;
  border-radius:10px;
}

.prev, .next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.5);
  border:none;
  color:white;
  padding:10px;
  cursor:pointer;
  font-size:20px;
}

.prev{left:10px}
.next{right:10px}


@media(max-width:1024px){
  .slider{
    height:65vh;
  }

  .caption{
    font-size:20px;
    padding:8px 16px;
  }
}


/* ===== TABLET (768px) ===== */
@media(max-width:768px){
  .slider{
    height:55vh;
  }

  .caption{
    font-size:18px;
    bottom:20px;
    width:90%;
  }

  .prev, .next{
    font-size:18px;
    padding:8px;
  }
}


/* ===== MOBILE (480px) ===== */
@media(max-width:480px){
  .slider{
    height:40vh;
  }

  .caption{
    font-size:14px;
    padding:6px 12px;
    bottom:15px;
  }

  .prev, .next{
    font-size:14px;
    padding:6px;
  }
}








.info-section{
  padding:60px 8%;
  color:#fff;
}

/* TOP SECTION */
.top-content{
  display:flex;
  gap:30px;
  align-items:flex-start;
  flex-wrap:wrap;
}

.left-img{
  flex:1;
}

.left-img img{
  width:100%;
  border-radius:10px;
}


.right-img{
  flex:1;
}

.right-img img{
  width:100%;
  border-radius:10px;
}
.image-box1 {
  float: right; /* left ki jagah right */
  width: 40%;
  margin-left: 20px; /* right me gap ke liye */
  margin-bottom: 10px;
}
/* Image float */
.image-box {
  float: left;
  width: 40%;
  margin-right: 20px;
  margin-bottom: 10px;
}

.image-box img {
  width: 100%;
  height: auto;
  radius:10px;
  display: block;
}

/* Clear fix */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}









@media(max-width:768px){
  .image-box {
    float: none;          /* float remove */
    width: 100%;          /* full width */
    margin: 0 0 15px 0;   /* niche spacing */
  }
}

@media(max-width:768px){
  .image-box1 {
    float: none;          /* float remove */
    width: 100%;          /* full width */
    margin: 0 0 15px 0;   /* niche spacing */
  }
}


















.contact-wrapper {
  display: flex;
  gap: 30px;
}

/* Dono side card */
.contact-info,
.contact-form {
  flex: 1;
  background: #fff;
  color: black;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Map full fit */
.map iframe {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  border: 0;
}



/* Branches */
.branches {
  margin-top: 40px;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.branch {
  background: black;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Responsive */
@media(max-width:768px){
  .contact-wrapper {
    flex-direction: column;
  }
  .branch-grid {
    grid-template-columns: 1fr;
  }
}









/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
              /*url('https://akaayservices.com/wp-content/uploads/2026/04/slider4.webp');*/
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

/* ===== CONTENT CENTER ===== */
.banner-content {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* ===== TITLE ===== */
.page-banner h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  margin-top: 10px;
  font-size: 16px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb span {
  color: #ffd700; /* highlight current page */
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .page-banner {
    padding: 60px 15px;
  }

  .page-banner h1 {
    font-size: 28px;
  }

  .breadcrumb {
    font-size: 14px;
  }
}







/* ===== TESTIMONIALS SLIDER (RESPONSIVE) ===== */
.testimonial-section {
    padding: 40px 15px;
    
}

.testimonial-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #fff;
}

.testimonial-slider {
    position: relative;
    max-width: 100%;   /* mobile ya 100% rakhna ho to */
    width: 100%;       /* 100% width le */
    margin: 0 auto;
    overflow: hidden;
}

/* Card ka width badha do */
.testimonial-card {
    display: none;
    background: #e8eeef;
    border-radius: 8px;
    padding: 25px 20px;   /* thoda zyada padding */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    margin: 0 auto;
    max-width: 500px;   /* yaha badhaya: 400 → 500 */
    width: 100%;        /* 100% width le */
}

.testimonial-card.active {
    display: block;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
}

.testimonial-content .message {
    margin: 0 0 10px;
    color: #555;
    font-style: italic;
    line-height: 1.5;
}

.client-info {
    font-size: 0.95rem;
    color: #333;
}

.client-info strong {
    display: block;
    font-size: 1rem;
    color: #111;
}

.testimonial-controls {
    text-align: center;
    margin-top: 20px;
}

.testimonial-controls button {
    background: #0056b3;
    color: #fff;
    border: none;
    padding: 8px 16px;
    margin: 0 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
}

.testimonial-controls button:hover {
    background: #004080;
}

/* Mobile */
@media (max-width: 767px) {
    .testimonial-section h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    .testimonial-card {
        max-width: 100%;    /* mobile pe full width */
        padding: 20px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .testimonial-card {
        max-width: 450px;
    }
}

/* Laptop / Desktop */
@media (min-width: 1024px) {
    .testimonial-section {
        padding: 60px 0;
    }
    .testimonial-card {
        max-width: 600px;   /* yaha 600px wide card */
    }
}