/*
Theme Name: Synaptic Logistics
Theme URI: https://example.com/synaptic-logistics.in
Author: Your Name
Author URI: https://yourwebsite.com
Description: A custom WordPress theme designed for Synaptic Logistics.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: synapticlogistics
Tags: Synaptic Logistics
*/

/* ================================
   Global Styles
================================ */
body{
font-family: 'Poppins', sans-serif;
margin:0;
background:#f5f6fa;
color:#222;
}

.container{
justify-content:space-between;
align-items:center;
padding:10px 0px;
}

.header{
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.logo{
color:#fd7b02;
}

nav ul{
display:flex;
gap:30px;
list-style:none;
}

.main-header{
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
position: fixed;
width: 100%;
z-index: 9;
}

.main-header .container{
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
max-width: 1200px;

}

/* Logo */
.logo img{
   max-height: 60px;   /* Perfect desktop size */
    width: auto;
    transition: all 0.3s ease;
}
.logo img:hover {
    transform: scale(1.05);
}
.logo {
    display: flex;
    align-items: center;
}
/* Navigation */

nav ul{
display:flex;
align-items:center;
gap:30px;
list-style:none;
margin:0;
padding:0;
}

nav ul li{
font-size:16px;
font-weight:500;
}

nav ul li a{
text-decoration:none;
color:#222;
}

/* Button */

.proper-btn{
background:#fd7b02;
color:white!important;
padding:10px 20px;
border-radius:6px;
text-decoration:none;
display:flex;
align-items:center;
height:40px;
}

.hero{
height:500px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:linear-gradient(135deg,#fd7b02,#4b1fd6);
color:white;
padding:50px;
}

.hero h1{
font-size:38px;
max-width:900px;
}

.hero button{
margin-top:20px;
padding:14px 26px;
border:none;
background:white;
color:#fd7b02;
font-weight:bold;
border-radius:6px;
}

section{
padding:80px 10%;
text-align:center;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:40px;
}

.card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 4px 15px rgba(0,0,0,0.06);
}

.cta{
background:#fd7b02;
color:white;
}

.cta button{
padding:14px 26px;
border:none;
background:white;
color:#fd7b02;
border-radius:6px;
}


/* Mobile Menu */

.menu-toggle{
display:none;
font-size:24px;
cursor:pointer;
}

@media (max-width:991px){

.main-menu{
display:none;
position:absolute;
top:62px;
left:0;
width:100%;
background:#fff;
box-shadow:0 5px 10px rgba(0,0,0,0.1);
}

.main-menu ul{
flex-direction:column;
padding:20px;
}

.main-menu.active{
display:block;
}

.menu-toggle{
display:block;
}

}

:root{
--purple:#fd7b02;
--purple-dark:#4b2fd6;
--light:#f4f5f9;
--gray:#6b7280;
}

body{
font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu;
background:var(--light);
color:#111;
}

.navbar{
background:white;
box-shadow:0 4px 20px rgba(0,0,0,0.05);
}

.navbar-brand{
font-weight:700;
color:var(--purple);
}

.nav-link{
font-weight:500;
color:#333 !important;
}

.hero{
background:linear-gradient(135deg,#6a4df4,#9f8cff);
color:white;
padding:120px 20px;
text-align:center;
}

.hero h1{
font-size:42px;
font-weight:700;
max-width:900px;
margin:auto;
}

.hero p{
margin-top:20px;
font-size:18px;
max-width:700px;
margin-left:auto;
margin-right:auto;
}

.btn-primary-custom{
background:white;
color:var(--purple);
padding:12px 28px;
border-radius:30px;
font-weight:600;
border:none;
margin-top:25px;
}

.section{
padding:90px 20px;
}

.section-title{
font-weight:700;
text-align:center;
margin-bottom:50px;
}

.card{
border:none;
border-radius:18px;
padding:30px;
background:white;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
transition:0.3s;
height:100%;
}



.icon{
font-size:30px;
color:var(--purple);
margin-bottom:15px;
}

.feature-box{
text-align:center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-8px);
}
.cta{
background:#fd7b02;
color:white;
padding:80px 20px;
text-align:center;
}

.swiper-slide{
width:auto; /* card width auto adjust */
display:flex;
justify-content:center; /* center cards */
}


.hero{
height:600px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
background-image:linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.45)),
url("<?php echo get_template_directory_uri(); ?>/images/carousel-1.jpg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.hero-content{
max-width:900px;
padding:20px;
}

.hero h1{
font-size:42px;
font-weight:700;
line-height:1.3;
}

.hero p{
margin-top:20px;
font-size:18px;
line-height:1.6;
}

.hero-btn{
display:inline-block;
margin-top:25px;
padding:14px 30px;
background:#fd7b02;
color:white!important;
text-decoration:none;
border-radius:6px;
font-weight:600;
}

.services{
text-align:center;
background:#f5f6fa;
}

.services h2{
font-size:28px;
margin-bottom:40px;
}

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

.service-card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:0.3s;
}

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

.service-card i{
font-size:40px;
color:#fd7b02;
margin-bottom:10px;
}

.service-card h5{
font-size: 18px;
font-weight:500;
}

.feature-box{
width:auto;
 /* fixed card width */
 padding: 20px;
}

.stats{
background:#fd7b02;
padding:80px 10%;
color:white;
}

.stats-container{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
text-align:center;
}

.stat-box h2{
font-size:48px;
font-weight:700;
margin-bottom:10px;
}

.stat-box p{
font-size:18px;
opacity:0.9;
}

@media(max-width:768px){

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

}

.btn.btn-primary, .btn.btn-secondary {
    color: #FFFFFF;               /* Text color */
    background-color: #fd7b02;   /* Button background */
    border: 2px solid #fd7b02;   /* Border color */
    transition: all 0.3s ease;   /* Smooth transition for hover */
}

/* Hover state */
.btn.btn-primary:hover, .btn.btn-secondary:hover {
    background-color: #fd7b02;   /* Darker shade on hover */
    border-color: #fd7b02;       /* Border color on hover */
    color: #FFFFFF;               /* Text color stays white */
}

/* Active / pressed state */
.btn.btn-primary:active, .btn.btn-secondary:active {
    background-color: #fd7b02;   /* Even darker shade */
    border-color: #fd7b02;
    color: #FFFFFF;
}



.menu{
list-style:none;
margin:0;
padding:0;
display:flex;
}

.menu li{
position:relative;
}

.menu li a{
display:block;

}


/* Submenu */

.submenu{
display:none;
position:absolute;
top:100%;
left:0;
background:#fff;
min-width:220px;
list-style:none;
padding:0;
box-shadow:0 3px 10px rgba(0,0,0,0.15);
}

.submenu li a{
color:#333;
padding:12px 18px;
}

.submenu li:hover{
background:#fd7b02;
color:#fff;
}

.submenu li a:hover{
    background:#fd7b02;
color:#fff;
}
.menu li:hover > .submenu{
display:block;
}

/* Second Level */

.submenu .submenu{
left:100%;
top:0;
}



/* Mobile Menu */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
color:#000;
}

@media (max-width:991px){

.menu{
display:none;
flex-direction:column;

width:100%;
}

.menu.active{
display:flex;
}

.menu li{
border-bottom:1px solid rgba(255,255,255,0.2);
}

.menu-toggle{
display:block;
}

.menu li:hover > .submenu {
    display: block;
    z-index: 1;
}
.submenu .submenu {
    left: -85%;
    top: 73px;
}
.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    gap:10px;
}
.hero {
    height: 800px;}
    .containers{
        padding: 20px;
    }
    .logo img {
    height: 40px;
}
.stat-box h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

}




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

.slider .cardss{
padding:20px;
margin:10px;
text-align:center;
background:#fff;
border-radius:10px;
}

.cardss img{
width:60%;
height:50px;
object-fit:contain;
margin:auto;
}@media(max-width:768px){

.service-grid{
grid-template-columns:repeat(2,1fr);
}
.hero-content{max-width:900px;padding: 10px;}
}.cardsss img{
width:70%;
height:70px;
object-fit:contain;
margin:auto;
}
  
  .about-images svg {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 18px;
}