:root { 
  --background-color: #ffffff; 
  --default-color: #444;
  --heading-color: #111;
  --accent-color: #149ddd;
  --surface-color: #ffffff;
  --contrast-color: #ffffff; 
   
}

html, body {
  height: auto;
  margin: 0;
  padding: 0;
  overflow: hidden;
  overflow-y: auto;
}

/*--------------------------------------------------------------
# Scroll-top
--------------------------------------------------------------*/

/* Scroll To Top Button */
.scroll-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  /*opacity: 0;*/
  /*visibility: hidden;*/
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

/* Scroll icon inside button */
.scroll-top i {
  font-size: 24px;
  line-height: 1;
}

/* Hover effect */
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

/* Active state - visible when scrolled */
.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

/* 🌐 Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  background-color: #f4f4f4;
  line-height: 1.6;
}

/* ========================= */
/* 📱 Toggle Button (Mobile) */
/* ========================= */
.header-toggle {
  display: none;
  background-color: #149ddd;
  color: white;
  font-size: 15px;
  padding: 10px 15px;
  border: none;
  border-radius: 30px;
  position: fixed;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 1101;
}
.header-toggle i {
  pointer-events: none;
}
 
/* ========================= */
/* 🧭 Sidebar */
/* ========================= */

.sidebar-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #1f1f1f, #2e2e2e);
  color: #fff;
  padding: 30px 20px;
  transform: translateX(0);
  transition: transform 0.3s ease;
  z-index: 1000;
  justify-items: center;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.sidebar-header.hidden {
  transform: translateX(-100%);
}
.sidebar-header.active {
  transform: translateX(0);
}

/* Profile Image & Name */
.profile-img img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  margin: 0 auto 20px;
  display: block;
   box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.profile-name {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

/* Social Icons */
.social-links {
  text-align: center;
  margin: 20px 0;
}
.social-links a {
  font-size: 20px;
  margin: 0 8px;
  text-decoration: none;
}
.social-links .whatsapp { color: #25D366; }
.social-links .facebook { color: #3b5998; }
.social-links .instagram { color: #E1306C; }
.social-links .linkedin { color: #0e76a8; }

/* Nav Menu */
#navmenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#navmenu ul li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 10px 15px;
  transition: background 0.3s;
}
#navmenu ul li a:hover {
  background-color: #333;
}

/* CV Button */
.cv-button {
  text-align: center;
  margin-top: 20px;
}
.cv-button a {
  display: inline-block;
  padding: 10px 25px;
  border: 2px solid white;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: background 0.3s;
}
.cv-button a:hover {
  background-color: white;
  color: #111;
}

/* ========================= */
/* 🧱 Main Content Area */
/* ========================= */
.main {
  margin-left: 290px;
  padding: 40px;
  transition: margin 0.3s ease;
}

/* ========================= */
/* ✍️ Responsive Typography */
/* ========================= */
h1, h2, h3 {
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}
h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }

/* ========================= */
/* 📱 Responsive Styles */
/* ========================= */
@media (max-width: 1200px) {
  .header-toggle {
    display: block;
  }

  
 /* By default hide on mobile */
.sidebar-header {
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

  .main, .content {
    margin-left: 0;
    padding: 2px;
  }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }
}

/*--------------------------------------------------------------
# Hero Section Fix
--------------------------------------------------------------*/
/* Hero Section Styling */
.hero {
  width: 100%;
  min-height: 100vh; /* This makes it full screen */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Hero Background Image */
/* Ensure full height is available */

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
   padding: 60px 20px;
  background-color: #000; /* fallback */
  box-shadow: 7px 6px 9px 6px cornflowerblue;
}

/* Hero Background Image */
.hero-section .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

/* Hero Text Container */
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 320px;
  padding: 20px;
  text-align: justify;
  right: 15%;
}

/* Hero Text Styling */
.hero-section .hero-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.hero-section .hero-content p {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}

.hero-section .hero-content p span {
  border-bottom: 2px solid #149ddd;
  letter-spacing: 1px;
}

/* =============================
   Mobile Responsive: Hero Section 
============================= */
@media (max-width: 1200px) {
  .hero-section .hero-content {
    max-width: 80%;
    right: 0;
    padding: 20px;
    text-align: center;
  }

  .hero-section .hero-content h2 {
    font-size: 30px;
  }

  .hero-section .hero-content p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    
  }

  .hero-section .hero-bg {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: 70% center;
}

.hero-content.aos-init.aos-animate {
    right: 120px;
    bottom: 50px;
}

  .hero-section .hero-content {
    max-width: 90%;
    right: 0;
    padding: 20px;
    text-align: center;
  }

  .hero-section .hero-content h2 {
    font-size: 26px;
    line-height: 1.4;
  }

  .hero-section .hero-content p {
    font-size: 15.5px;
    line-height: 1.6;
  }
}


@media (max-width: 480px) {
  /*.hero-section {*/
  /*  padding: 20px 10px;*/
  /*}*/

  .hero-section .hero-content {
    padding: 15px;
    max-width: 95%;
    text-align: center;
  }

  .hero-section .hero-content h2 {
    font-size: 22px;
  }

  .hero-section .hero-content p {
    font-size: 14px;
  }
.hero-content.aos-init.aos-animate {
    margin-left: 50px;
}
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .about.section {
    margin-left: 290px; /* Adjust this to exact sidebar width */
    padding: 15px 22px;
  }
}
/* About Section */
.about.section {
  position: relative;
  z-index: 3;
  background-color: lavender;
  
}

.about .row {
    align-items: center;
  }

.about .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.about .section-title p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
}

.about .content h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--heading-color);
}

.about .content  {
  font-size: 16px;
  line-height: 1.7;
  color: var(--default-color);
}


.about .content ul li {
  padding: 10px 0;
  font-size: 16px;
  color: var(--default-color);
}

.about .content ul li i {
  color: var(--accent-color);
  margin-right: 8px;
}

.about .bold-center-text {
  text-align: center;
  font-weight: 600;
  margin-top: 25px;
  font-size: 18px;
  color: var(--heading-color);
}

.about .img-fluid {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.highlighted-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    color: black;
    background: linear-gradient(to right, #149ddd, #00c6ff);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-width: 1008px;
    position: relative;
    z-index: 2;
}
.col-12 {
    flex: 0 0 auto;
    width: 100%;
    justify-items: center;
}
/*--------------------------------------------------------------
# About Section responsive
--------------------------------------------------------------*/
@media (max-width: 480px) {
    .about.section{
    padding: 10px 20px;
  }
}
  .highlighted-quote {
    font-size: 20px;
    padding: 15px;
    height: auto;
    line-height: 1.4;
    margin-top: 20px;
  }

/*--------------------------------------------------------------
# Stats
--------------------------------------------------------------*/
.stats.section {
  margin-left: 290px;
  padding: 30px;
  background-color: #f9fafe;
}

/* Box Design */
.stats-item-box {
  background: #fff;
  border: 2px solid #cde1f9;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  padding: 20px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.stats-item-box:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 36px rgba(0, 123, 255, 0.25);
  border-color: #007bff;
}

/*.stats-item {*/
/*  text-align: center;*/
/*}*/

.stats-item i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.stats-item span {
  font-size: 30px;
  font-weight: 700;
  color: var(--heading-color);
  margin-top: 5px;
}

.stats-item p {
  font-size: 16px;
  color: var(--default-color);
  margin-top: 6px;
  line-height: 1.5;
}

.stats-item p span {
  display: block;
  font-size: 14px;
  color: #777;
  margin-top: 4px;
}

/* =============================*/
/*   Responsive: Stats Section*/
/*============================= */
@media (max-width: 1200px) {
  .stats.section {
    margin-left: 0;
    padding: 25px 20px;
  }

  .stats-item-box {
    margin: 10px 0;
  }
}

@media (max-width: 768px) {
  .stats.section {
    padding: 20px 15px;
  }

  .stats-item i {
    font-size: 30px;
  }

  .stats-item span {
    font-size: 24px;
  }

  .stats-item p {
    font-size: 15px;
  }

  .stats-item p span {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .stats-item-box {
    padding: 12px;
  }

  .stats-item i {
    font-size: 26px;
  }

  .stats-item span {
    font-size: 20px;
  }

  .stats-item p {
    font-size: 14px;
  }

  .stats-item p span {
    font-size: 12px;
  }
}


/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/

/* Skills Section */
#skills {
  padding: 60px 30px;
  background-color: lavender;
  margin-left: 305px;
}

/* Skills Grid */
.skills-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 40px;
  justify-items: center;
  align-items: center;
  margin-top: 40px;
}

/* Skill Items */
.skill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: pulse 2s ease-in-out infinite;
}

/* Animate icon only */
.skill-item i,
.skill-item img {
  font-size: 50px;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* Skill Labels */
.skill-item span {
  margin-top: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--heading-color);
  text-align: center;
}

/* Animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

/* Icon Colors */
.skill-item i.fa-html5 { color: #e44d26; }
.skill-item i.fa-css3-alt { color: #264de4; }
.skill-item i.fa-js { color: #f7df1e; }
.skill-item i.fa-bootstrap { color: #7952b3; }
.skill-item i.fa-php { color: #8892be; }
.skill-item i.fa-wordpress { color: #21759b; }
.skill-item i.fa-laravel { color: #f05340; }
.skill-item i.fa-microsoft { color: #00a4ef; }
.skill-item i.fa-shopify { color: #96bf48; }

/* Responsive Fix */
@media screen and (max-width: 768px) {
  #skills {
    margin-left: 0;
    padding: 40px 15px;
  }

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


/* =============================*/
/*   Responsive: Skills Section*/
/*============================= */


/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/

.resume.section {
  padding: 40px;
  margin-left: 300px; /* Sidebar ke bahar nikalne ke liye */
}

.resume-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.resume-column {
  width: 48%;
}

.resume-title {
  font-size: 26px;
  color: #007bff;
  font-weight: bold;
  margin-bottom: 20px;
}

.resume-item {
  margin-bottom: 25px;
  position: relative;
  padding-left: 25px;
}

.resume-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid #007bff;
  border-radius: 50%;
  position: relative;
  top: 2px;
  margin-right: 8px;
}

.resume-dot::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 6px;
  height: 6px;
  background-color: #007bff;
  border-radius: 50%;
}

.resume h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.resume h5 {
  font-size: 15px;
  color: #999;
  margin-bottom: 6px;
}

.resume p,
.resume ul {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.resume ul {
  padding-left: 20px;
  list-style-type: disc;
}

.resume-line {
  width: 3px;
  background-color: #007bff;
  margin: 0 auto;
}

/* ===============================*/
/*   Responsive: Resume Section*/
/*=============================== */
@media (max-width: 1200px) {
  .resume.section {
    margin-left: 0;
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .resume-content {
    flex-direction: column;
    gap: 30px;
  }

  .resume-column {
    width: 100%;
  }

  .resume-line {
    display: none;
  }

  .resume-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .resume h4 {
    font-size: 16px;
  }

  .resume h5 {
    font-size: 14px;
  }

  .resume p,
  .resume ul {
    font-size: 13.5px;
  }

  .resume-dot {
    width: 12px;
    height: 12px;
    margin-right: 6px;
  }

  .resume-dot::after {
    width: 5px;
    height: 5px;
    top: 2.5px;
    left: 2.5px;
  }
}

@media (max-width: 480px) {
  .resume.section {
    padding: 25px 15px;
  }

  .resume-title {
    font-size: 20px;
  }

  .resume h4 {
    font-size: 15px;
  }

  .resume h5 {
    font-size: 13px;
  }

  .resume p,
  .resume ul {
    font-size: 13px;
  }

  .resume-dot {
    width: 10px;
    height: 10px;
  }

  .resume-dot::after {
    width: 4px;
    height: 4px;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/

/* Portfolio Styling */
#portfolio {
  margin-left: 300px;
  padding: 40px;
  background-color: lavender;
}

.portfolio-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.project-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.project-card {
  flex: 1 1 calc(33.33% - 20px);
  background-color: cornsilk;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 3px solid  #007bff;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,123,255,0.2);
}

.project-card video,
.project-card img {
  width: 100%;
  height: auto;
  display: block;
   border: 3px solid  #007bff;
}

.project-info {
  padding: 15px;
  background-color: cornsilk;
}

.project-info h3 {
  margin: 0;
  font-size: 18px;
  color: #007bff;
}

.project-info p {
  font-size: 14px;
  color: #555;
}

/* ===============================*/
/*   Responsive: Portfolio Section*/
/*=============================== */
@media (max-width: 1200px) {
  #portfolio {
    margin-left: 0;
    padding: 30px 20px;
  }

  .project-grid {
    gap: 20px;
    justify-content: center;
  }

  .project-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .portfolio-wrapper {
    gap: 30px;
  }

  .project-grid {
    flex-direction: row;
    gap: 15px;
  }

  .project-card {
    flex: 1 1 100%;
  }

  .project-info h3 {
    font-size: 16px;
  }

  .project-info p {
    font-size: 13.5px;
  }
}

@media (max-width: 480px) {
  #portfolio {
    padding: 25px 15px;
  }

  .project-grid {
    flex-direction: column;
    gap: 15px;
  }

  .project-card {
    width: 100%;
    flex: none;
  }

  .project-info h3 {
    font-size: 15px;
  }

  .project-info p {
    font-size: 13px;
  }
}



/*--------------------------------------------------------------
# Services Section - Final with Card Shadow
--------------------------------------------------------------*/

.custom-services-section {
  margin-left: 300px;
  padding: 40px;
}

.service-item {
  gap: 20px;
  background: #fff;
  border: 1px solid #e0ecff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  padding: 20px;
  min-height: 180px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 25px;
}

.service-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 14px 32px rgba(0, 123, 255, 0.2);
}

.service-item .icon {
  background-color: #007bff;
  color: black;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}
 a {
    color: #007bff;
    text-decoration: none;
}
.service-item .title {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 18px;
  color: #1c1c1c;
}

.service-item .description {
  font-size: 14.5px;
  color: #555;
  line-height: 1.5;
}


/* ================================*/
/*   Responsive: Services Section*/
/*================================ */

@media (max-width: 1200px) {
  .custom-services-section {
    margin-left: 0;
    padding: 40px 25px;
  }

  .service-item {
    flex-direction: row;
    align-items: flex-start;
    padding: 20px 18px;
  }

  .service-item .icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }

  .service-item .title {
    font-size: 17px;
  }

  .service-item .description {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .custom-services-section {
    padding: 30px 20px;
  }

  .service-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-item .icon {
    margin-bottom: 12px;
  }

  .service-item .title {
    font-size: 16px;
  }

  .service-item .description {
    font-size: 13.8px;
  }
}

@media (max-width: 480px) {
  .custom-services-section {
    padding: 25px 15px;
  }

  .service-item {
    padding: 18px;
  }

  .service-item .icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .service-item .title {
    font-size: 15.5px;
  }

  .service-item .description {
    font-size: 13.5px;
  }
}




/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.custom-testimonial-section {
  margin-left: 300px;
  padding:40px;
  background-color: lavender;
}

.section-header {
  margin-bottom: 40px;
}
.testimonial-card {
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: none;
  border-radius: 15px;
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 600px;
  margin: auto;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.2);
}

.testimonial-message {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  position: relative;
}

.testimonial-name {
  font-weight: 600;
  margin-top: 15px;
  font-size: 18px;
}

.testimonial-designation {
  font-size: 14px;
  color: #777;
}

.read-more {
  color: #007bff;
  cursor: pointer;
  font-size: 14px;
  margin-left: 6px;
}

.bi-quote {
  color: #007bff;
  font-size: 20px;
  margin: 0 5px;
}

.swiper-container {
  margin-bottom: 40px;
}
.swiper-button-prev,
.swiper-button-next {
  color: #007bff;
  font-weight: bold;
  background: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.btn-primary {
    color: white;
    background-color:  #007bff;
    border-color: #81c408;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #007bff;
  color: #fff;
}

/* ==========================================*/
/*   Responsive Design for Testimonials Section*/
/*========================================== */

@media (max-width: 1200px) {
  .custom-testimonial-section {
    margin-left: 0;
    padding: 40px 25px;
  }

  .testimonial-card {
    padding: 30px;
  }

  .testimonial-message {
    font-size: 15px;
  }

  .testimonial-name {
    font-size: 17px;
  }

  .testimonial-designation {
    font-size: 13.5px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .custom-testimonial-section {
    padding: 30px 20px;
  }

  .testimonial-card {
    padding: 25px;
    max-width: 90%;
  }

  .testimonial-message {
    font-size: 14px;
  }

  .testimonial-name {
    font-size: 16px;
  }

  .testimonial-designation {
    font-size: 13px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .custom-testimonial-section {
    padding: 25px 15px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-message {
    font-size: 13.5px;
    line-height: 1.5;
  }

  .testimonial-name {
    font-size: 15px;
  }

  .testimonial-designation {
    font-size: 12.5px;
  }

  .read-more {
    font-size: 13px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}

/* =============================*/
/*   Testimonial Modal Responsive*/
/*============================= */

@media (max-width: 768px) {
  .modal-dialog {
    margin: 1rem auto;
    max-width: 90%;
  }

  .modal-content {
    padding: 10px;
  }

  .modal-header {
    padding: 15px 20px;
  }

  .modal-title {
    font-size: 18px;
  }

  .modal-body {
    padding: 15px 20px;
  }

  .modal-body label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
  }

  .form-control {
    font-size: 14px;
    padding: 8px 10px;
  }

  .btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .modal-dialog {
    max-width: 95%;
  }

  .modal-title {
    font-size: 17px;
  }

  .form-control {
    font-size: 13.5px;
    padding: 7px 9px;
  }

  .btn {
    font-size: 13.5px;
    padding: 7px 14px;
  }
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

/* ========== Contact Section ========== */
#contact {
  margin-left: 300px;
  padding: 40px;
  background: #fdfdfd;
}

.contact .section-title {
  margin-bottom: 40px;
}

.contact .info-wrap {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.contact .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 15px;
}

.contact .info-item i {
  font-size: 28px;
  color: #007bff;
}

.contact .info-item h3 {
  margin: 0 0 5px 0;
  font-weight: bold;
  font-size: 18px;
}

.contact .info-item p {
  margin: 0;
  color: #333;
}

/* ========== Social Links ========== */
.social-links-vertical {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  border: 1px dashed #ccc;
  border-radius: 10px;
  margin-top: 30px;
}

.social-links-vertical a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links-vertical a i {
  font-size: 24px;
  margin-right: 12px;
}

.social-links-vertical a.whatsapp { background-color: #25D366; }
.social-links-vertical a.facebook { background-color: #3b5998; }
.social-links-vertical a.instagram { background-color: #E1306C; }
.social-links-vertical a.linkedin { background-color: #0077B5; }

.social-links-vertical a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ========== Contact Form ========== */
.php-email-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.php-email-form label {
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
  color: #333;
}

.php-email-form input,
.php-email-form textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: border-color 0.3s ease;
}

.php-email-form input:focus,
.php-email-form textarea:focus {
  border-color: #007bff;
  outline: none;
}

.php-email-form textarea {
  resize: vertical;
  min-height: 150px;
}

.php-email-form button {
  background-color:  #007bff;
  color: white;
  padding: 12px 30px;
  font-size: 18px;
  border: none;
  border-radius: 6px;
  margin-top: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.php-email-form button:hover {
  background-color: #0056b3;
}



/* =============================
   Contact Section Responsive:
============================= */

@media (max-width: 992px) {
  #contact {
    margin-left: 0;
    padding: 30px 20px;
  }

  .contact .info-wrap,
  .php-email-form {
    padding: 25px 20px;
  }

  .social-links-vertical {
    padding: 15px;
    gap: 12px;
  }

  .social-links-vertical a {
    font-size: 16px;
    padding: 10px 16px;
  }

  .social-links-vertical a i {
    font-size: 20px;
    margin-right: 10px;
  }

  .php-email-form input,
  .php-email-form textarea {
    font-size: 14px;
    padding: 10px 12px;
  }

  .php-email-form button {
    font-size: 16px;
    padding: 10px 20px;
  }

}

@media (max-width: 576px) {
  .contact .info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .contact .info-item i {
    font-size: 24px;
  }

  .contact .info-item h3 {
    font-size: 16px;
  }

  .contact .info-item p {
    font-size: 14px;
  }

  .php-email-form textarea {
    min-height: 120px;
  }

  .php-email-form button {
    width: 100%;
    text-align: center;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .section-title p {
    font-size: 14.5px;
  }

  .social-links-vertical {
    flex-direction: column;
  }
}

footer#footer {
  width: 100%;
  margin: 0 auto;
  padding: 20px 15px;
  text-align: center;
  background-color: lavender;
}

footer#footer .copyright p {
  font-size: 14px;
  margin: 0;
}

 /*Mobile specific center alignment */
@media (max-width: 992px) {
  footer#footer {
    margin-left: 0 !important;
    text-align: center;
  }
}



/* =============================
  Blog Section :
============================= */
     .blog-body {
            background-color: #f3f7fc;
            font-family: 'Segoe UI', sans-serif;
        }

        .page-title {
            text-align: center;
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: #003366;
        }

       .blog-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
    border: 2px solid blue;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px;
    box-shadow: 2px 3px 4px 3px cornflowerblue;
    
}

        .blog-card:hover {
            transform: translateY(-5px);
        }

        .img {
            height: 50%;
            width: 50%;
            object-fit: cover;
            border-radius: 0 0 0 16px;
        }

        .blog-content {
            padding: 30px;
        }

      .blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #002b5c;
}
       .blog-description {
    font-size: 1rem;
    color: #555;
}

      .read-more {
    margin-top: 10px;
    background: #0d6efd;
    color: #fff;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

       .read-more:hover {
    background-color: #084298;
}
.blog-img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}


        @media (max-width: 768px) {
    .blog-card {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    .image-side, .text-side {
        flex: 0 0 50%;
    }

    .blog-title {
        font-size: 1.1rem;
    }
    
}