@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@500;700&family=DM+Sans:wght@400;500;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', Times, serif;
    line-height: 1.6;
    color: #333;
    background: #fffaf8;
}

a {
    text-decoration: none;
    color: black;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 0 10px;
}

/* HEADER */
header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid rgba(229, 9, 20, 0.1);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* NAVBAR */
.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* LOGO */
.logo {
    flex: 0 0 auto;
    margin-right: 40px;
}

.logo img {
    height: 52px;
    width: auto;
    display: block;
}
nav ul {
    display: flex;
    gap: 25px; 
    list-style: none;
}
/* NAV LINKS */
.nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    color: #18181b;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-links a:hover, .nav-links a.active {
    color: #e50914;
}


/* BUTTONS */
.btn {
    padding: 11px 26px;
    background-color: #e50914;
    color: #fff;
    border: none;
    border-radius: 26px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}
.btn:hover {
    background-color: #b20710;
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.2);
}

/* Custom buttons */
.about-btn { background: #606f52;
  border-radius: 26px;
  padding: 12px 30px;
  cursor: pointer;
  font-weight: bold;
  color: white;
  transition: background 0.3s ease; 
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}
.about-btn:hover {
  background-color: #2c8120;
}
.service1-btn { 
  background: rgb(217, 149, 23);
    display: inline-block;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease; 
    margin-left: 30px;
    border: none;
    font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  }
.service1-btn:hover {
  background-color: rgb(250, 164, 6);
}
.service2-btn { background: #5b7371;
  display: inline-block;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease; 
    margin-left: 30px; 
    border: none;
      font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  }
  .service2-btn:hover {
  background-color: #0fe7d5;
  }
.service4-btn { background: #328327;
  display: inline-block;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease; 
    margin-left: 30px;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}
.service2-btn:hover {
  background-color: #36c723;
}
.carrer-btn { background: #7ab1a2; 
  display: inline-block;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease; 
    margin-left: 30px;
    border: none;
   font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}
.carrer-btn:hover {
  background-color: #45a189;
}
.contact-btn { background: #bd812f;
  display: inline-block;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease; 
    margin-left: 30px;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}
.contact-btn:hover {
  background-color: #de8202;
}
.community-btn { background: #bb5520; 
  display: inline-block;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease; 
    margin-left: 30px;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}
.community-btn:hover{
  background-color: #db4f03;
}


/* HAMBURGER (mobile) */
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    position: absolute;
    right: 5%;
    top: 12px;
    z-index: 100;
}

/* HIDE CHECKBOX */
#menu-toggle {
    display: none;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    body {
       font-size: 0.95rem;
        line-height: 1.5;
       }

    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-shadow: 0 1px 4px rgba(0,0,0,0.1);
        padding: 10px 0;
    }

    .logo {
        position: absolute;
        left: 5%;
        top: 10px;
    }

    .logo img { height: 50px; }

    .hamburger { display: block; }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background: #fff;
        position: absolute;
        top: 70px;
        right: 5%;
        width: 80%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-radius: 10px;
        padding: 15px 20px;
        gap: 20px;
        z-index: 99;
    }

    /* Show menu when checkbox is checked */
    #menu-toggle:checked ~ .nav-links {
        display: flex;
    }

    .nav-links li { width: 100%; padding: 5px 0; }

    .nav-links a { display: block; width: 100%; font-size: 1rem; }

    /* Show button inside mobile menu */
    .nav-links .btn {
        display: block;
        width: 50%;
        text-align: center;
        margin-top: 10px;
        margin: 0 auto;
    }

    .nav-bar{
      margin-bottom: 20px;
    }
    #BTN{
      display: none;
    }
    #a-BTN{
      display: none;
    }
    #p-BTN{
      display: none;
    }
    a.btn{
      margin: 0 auto;
    }
    #t-BTN{
    display: none;
  }
  #d-BTN{
    display: none;
  }
  #c-BTN{
    display: none;
  }
  #ca-BTN{
    display: none;
  }
  #con-BTN{
    display: none;
  }
}

/* DESKTOP BUTTON DISPLAY */
@media (min-width: 769px) {
    .nav-links .btn { 
      display: none;
     }
    
}
@media (min-width:1024px){
  #ab-BTN{
    display: none;
  }
  #pt-BTN{
    display: none;
  }
  #tr-BTN{
    display: none;
  }
  #de-BTN{
    display: none;
  }
  #co-BTN{
    display: none;
  }
  #car-BTN{
    display: none;
  }
  #cont-BTN{
    display: none;
  }
}



/* hero-section */
/*hero HOME*/
.hero {
  min-height: 95vh;
  height: auto;
  display: flex;
  align-items: flex-start;       
  justify-content: flex-start; 
  text-align: left;
  color: #fefcfc;
  background: rgba(78, 78, 77, 0.5);
  margin: 5px;
  padding-left: 80px; 
  padding-bottom: 60px;
  box-sizing: border-box;
  background-image: url("images/Home and Litigation services.png");
  background-size: cover;           
  background-repeat: no-repeat;     
  background-position: right; 
}

.hero-content {
  position: relative; 
  max-width: 600px; 
}

.hero h1 {
  margin-top: 150px;
  font-size: 4.8rem;
  margin-bottom: 10px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 900;
  line-height: 1.3;
}

.hero p {
  font-size: 2.2rem;
  margin: 10px 0 30px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  line-height: 1.4;
}
a.btn{
  display: block;
  text-align: center;
  align-self: center;
  margin: 0 auto;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;

}
.hero a {
  display: inline-block;
  text-decoration: none;
  color: #e86b28;
  background-color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  transition: background 0.3s ease;
  font-family: 'Lucida Sans', 'Lucida Grande',  Verdana, sans-serif;
}

.hero a:hover {
  background: #b34c12;
  color: white;
}

/* ===== HERO SECTION ===== */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    height: 500px;
    padding: 60px 20px;
    text-align: center;
    background-image: url("images/Home and Litigation services.png");
    background-size: cover;           
    background-repeat: no-repeat;     
    background-position: right;
     
  }

  .hero h1 {
    margin-top: 0;
    font-size: 3rem;
    line-height: 1.3;
    padding-right: 0;
    text-align: center;
  }

  .hero p {
    font-size: 1.9rem;
    margin: 10px 0 20px;
    text-align: center;
    align-self: start;
  }

  .hero-content {
    width: 100%;
  }
  a.btn{
  display: block;
  text-align: center;
  align-self: center;
  margin: 0 auto;
  width: 50%;
}
}


/* Services */
/* ===== Services Section ===== */
.services {
  padding: 40px 9%;
  margin: 0;
  width: 100%;
  text-align: center;
  background: #fff;
  box-sizing: border-box;
}

.service-text h2 {
  font-size: 2.9rem;
  margin-bottom: 10px;
  color: #626262;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 800;
}
.service-text p {
  font-size: 1.5rem;
  margin-bottom: 80px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  max-width:1200px ;

}

.services-subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.services-grid a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ===== Service Items ===== */
.service-item {
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  font-size: 2.3rem;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  /* Services Section */
  .services {
    padding: 20px 5%;
  }
  .service-item {
    flex: 1 1 100%; 
    max-width: 100%;
    height: 200px;
    font-size: 1.8rem;
  }

  /* Section Heading */
  .services h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  .services p {
    font-size: 1.3rem;
  }

  /* Subtitle */
  .services-subtitle {
    font-size: 0.9rem;
    max-width: 100%;
    margin-bottom: 15px;
    line-height: 1.4;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Service Items */
  .service-item {
    width: 100%; 
    font-size: 1.5rem; 
    border-radius: 20px;
    height: 250px;
    min-height: unset;
  }
}

/* ===== Service Items Backgrounds ===== */
.service-item.service-bg-patent {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 1800;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(255, 255, 0, 0.3)),
    url('images/Patent services.png') center/cover no-repeat;
}

.service-item.service-bg-trademarks {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 1800;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(255, 255, 0, 0.3)),
    url('images/Trademark\ servicews.png') center/cover no-repeat;
}

.service-item.service-bg-design {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 1800;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(255, 255, 0, 0.3)),
    url('images/Design Services.png') center/cover no-repeat;
}

.service-item.service-bg-copyright {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 1800;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(255, 255, 0, 0.3)),
    url('images/Copyright Services.png') top/cover no-repeat;
}

.service-item.service-bg-ipmanagement {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 1800;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(255, 255, 0, 0.3)),
    url('images/IP Management Services.png') center/cover no-repeat;
}

.service-item.service-bg-litigation {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 1800;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(255, 255, 0, 0.3)),
    url('images/Home and Litigation services.png') center/cover no-repeat;
}

.service-item.service-bg-drafting-non-provisional {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 1800;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(255, 255, 0, 0.3)),
    url('images/Patent services.png') center/cover no-repeat;
}

/* ===== Mobile Font Adjustment ===== */
@media (max-width: 768px) {
  .service-item {
    font-size: 1.2rem !important; 
    height: 250px; 
  }
}

/* Patent Section */
.patent {
  position: relative;
  display: flex;
  align-items: center;         
  justify-content: flex-start;  
  min-height: 80vh;
  color: #fff;
  padding: 40px 9%;
  margin: 30px 150px ;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;

  background-image: url("images/old.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  

}
.patent .img {
  max-width: 100%;
  height: auto;
  display: block;
}
.patent text{
  display: flex;
  align-items: center;         
  justify-content: flex-start; 
}
.patent h2 {
  font-size: 5rem;
  margin-bottom: 15px;
  color: white;
  font-family: 'Josefin Sans', sans-serif;
}

.patent p {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 40px;
  font-family: 'DM Sans', sans-serif;
  
}

.patent .btn {
  display: inline-block;
  text-align: left;
  align-self: left;
  align-items: left;
  padding: 12px 25px;
  margin: 0 auto;
  color: #ba882b;   
  background-color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 35px;
  transition: background 0.3s ease;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;

}

.patent .btn:hover {
  cursor: pointer;
  color: whitesmoke; 
  background-color: #d46a2e;
  font-weight: bold; 
}

@media (max-width: 786px) {
  .patent {
    margin: 30px;
    align-items: top;
    text-align: center;
    padding: 0 55px;
  }

  .patent h2 {
    font-size: 2.8rem;
    text-align: center;
   
   
  }
  .patent-text{
    margin-bottom: 280px;
    align-items: center;
  }

  .patent p {
    font-size: 1.5rem;
    text-align: center;
    
  }

  .patent .btn {
    display:block;
    width: 60%;
    font: 1.2rem 'DM Sans', sans-serif;
    text-align: center;
    align-self: center;
    margin: 0 auto;
    padding: 12px 9px;
    color: #ba882b;
    
  }
}



/* Newsletter Section */
.newsletter {
  background: linear-gradient(135deg, #121217 0%, #08080a 100%);
  border: 1px solid rgba(229, 9, 20, 0.15);
  border-radius: 24px;
  padding: 50px 60px;
  margin: 80px auto; 
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; 
  gap: 40px;
  max-width: 1200px; 
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Left Side (Text Info) */
.news-text {
  flex: 1.2;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 50px;
}

.news-text h2 {
  font-weight: 700;
  text-align: left;
  font-size: 3.5rem;
  color: #ffffff;
  padding: 0;
  font-family: 'Josefin Sans', sans-serif;
  margin-bottom: 15px;
}

.news-text p {
  line-height: 1.6;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.60);
  text-align: left;
  padding: 0;
  font-family: 'DM Sans', sans-serif;
}

/* Right Side (Subscribe Form) */
.subscribe-text {
  flex: 1;
  padding-left: 50px;
  text-align: left;
}

.subscribe-text h2 {
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: #ffffff;
  font-family: 'Josefin Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.subscribe-text p {
  line-height: 1.5;
  font-size: 1.05rem;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'DM Sans', sans-serif;
}

/* Form Styling */
.subscribe-text form {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  max-width: 480px;
  width: 100%;
}

.subscribe-text input[type="email"] {
  flex: 1;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  outline: none;
  font-size: 0.95rem;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 30px;
  transition: all 0.3s ease;
  font-family: 'DM Sans', sans-serif;
}

.subscribe-text input[type="email"]:focus {
  border-color: #e50914;
  background-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 10px rgba(229, 9, 20, 0.15);
}

.subscribe-text button {
  padding: 14px 28px;
  background: #e50914;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 30px;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.5px;
}

.subscribe-text button:hover {
  background: #b20710;
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

/* Mobile View */
@media (max-width: 768px) {
  .newsletter {
    margin: 40px auto;
    padding: 35px 25px;
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .news-text {
    padding: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 25px;
    width: 100%;
  }

  .news-text h2 {
    font-size: 2.8rem;
    text-align: center; 
  }

  .news-text p {
    font-size: 1rem;
    text-align: center;
  }
  
  .subscribe-text {
    padding: 0;
    width: 100%;
    text-align: center;
  }
  
  .subscribe-text h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .subscribe-text p {
    font-size: 0.95rem;
    text-align: center;
  }

  .subscribe-text form {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .subscribe-text input[type="email"],
  .subscribe-text button {
    width: 100%;
  }

  .subscribe-text button {
    border-radius: 30px;
  }
}

/*=> Benefits Section */
.benefits {
  background: #fafafa;
  padding: 80px 45px;
  text-align: center;
}

.benefits-text h2 {
  font-size: 3.3rem;
  margin-bottom: 10px;
  color: rgb(87, 87, 87);
  font-weight: 700;
  font-family: 'Josefin Sans', sans-serif;
  
}

.benefits-text p {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 70px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;

}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr; /* first=small, middle=double, last=small */
  gap: 30px;
  margin-top: 20px;
  align-items: start;
}
.benefit{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 32px;
  color: rgb(252, 251, 251);
 
}
.benefit.cost{
  text-align: center;
  align-self: center;
  font-size: 1.7rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: bolder;
  font-family: 'Josefin Sans', sans-serif;
  padding: 0;
  margin-left: 100px;
  min-height: 400px; 
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  background: 
    linear-gradient(rgba(213, 187, 108, 0.786), rgba(255, 255, 0, 0.3)),
    url('images/Patent\ services.png') center/cover no-repeat;

}
.benefit.trust {
  text-align: center;
  font-size: 3rem;
  line-height: 1.2;
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
  min-height: 600px; 
  padding: 0; 
  font-weight: bolder;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  background: 
    linear-gradient(  rgba(242, 238, 133, 0.899),   rgba(255, 152, 0, 0.55)),
    url('images/Patent\ services.png') bottom/cover no-repeat;
    font-family: 'Josefin Sans', sans-serif;
}
.benefit.support{
  text-align: center;
  align-self: center;
  font-size: 1.7rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
  min-height: 400px; 
  font-family: 'Josefin Sans', sans-serif;
  margin-right: 100px;
  font-weight: bolder;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  background: 
    linear-gradient( rgba(163, 227, 166, 0.908),  rgba(102, 187, 106, 0.55)),
    url('images/Patent\ services.png') center/cover no-repeat;
  

}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}


.benefit.trust h6 {
  font-size: 1rem;
  color: #fafafa;
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
  
}

.benefit.trust p {
  font-size: 0.9rem;
  color: #fafafa;
  margin: 10px ;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 30px;
  padding: 0 50px;
}


.benefit .btn {
  display: inline-block;
  margin-top: 40px;
  align-items: center;
  text-align: center;
  border-radius: 50px;
  background: #fff;
  color: rgb(238, 168, 5);
  font-style: bold;
  font-size: 1.5rem;
  text-decoration: none;
  transition: background 0.3s ease;
  padding: 12px 25px;
  margin: 0 auto;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500
  
}

.benefit .btn:hover {
  cursor: pointer;
  background: #e19a0a;
  color: white;
}



@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr; /* stack vertically */
    gap: 20px;
    padding: 8px 0;
  }
  
  .benefit.cost{
    margin: 0 auto;
    padding: 9px;
    min-width: 300px;
    height: 300px;
    
  }
  .benefit.trust{
    margin: 0 auto;
    padding: 9px;
    min-width: 370px;
    height: 700px;
    
  }
  .benefit.trust p{
    font-size: 0.9rem;
    padding: 0 10px;
    
  }
  .benefit.support {
    margin: 0 auto;
    padding: 9px;
    min-width: 300px;
    height: 300px;
    
  }

  .benefits-text h2 {
    font-size: 2.8rem;
    color: rgb(17, 16, 16);
  }
  .benefits-text p {
    font-size:1rem;
    color: gray;
    padding: 0 20px;
  }
  
  .benefit .btn {
    font-size: 1rem;  
    padding: 10px 15px; 
    width: 60%;   
    text-align: center; 
    display: block;   
    margin: 0 auto;
    color: orange;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .benefits {
    padding: 30px 15px;
  }

  .benefits-text h2 {
    font-size: 2rem;
  }

  .benefits-text p {
    font-size: 1.26rem;
    line-height: 1.2;
    
  }

  .benefit.trust {
    min-height: 350px;
    font-size: 2.5rem;
  }
  .benefit.trust h6{
    font-size: 1rem;
    padding: 0 20px;
  }
  .benefit.trust P{
    font-size: 1rem;
    padding: 0 20px;
  }

  .benefit.cost,
  .benefit.support {
    min-height: 200px;
    padding: 10px 10px;
  }
}
/*PROPERTY*/
.property {
  border-radius: 16px;
  padding: 0 40px ;
  margin: 50px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; 
  gap: 40px;
 
}
.property-content{
  background: #fafafa;
  padding: 30px 20px;
  text-align: center;
  flex: 1 1 100%;
}
.property-content h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: #222;
   font-family: 'Josefin Sans', sans-serif;
  font-weight: 700; 
  color: #626262;
}

.property-content p {
  font-size: 1.3rem;
  line-height: 1.3;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400; 
  color: #626262;
}

.motorola {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 50px 20px;
  border-radius: 12px;
  flex-wrap: wrap;
  overflow: hidden;
   margin: 0 auto; 
  background-color: #fff;

}

/* Image on the left */
.motorola img {
  width: 100%;
  max-width: 550px;
  border-radius: 15px;
  display: block;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Content on the right */
.motorola-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 25px;
  text-align: left;
  max-width: 600px;
}

/* Headline styling */
.motorola-content h2 {
  font-size: 2.3rem;
  color: #222;
  margin-bottom: 10px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 800; 
  color: #626262;
}

/* Paragraph styling */
.motorola-content p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.7;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400; 
  color: #626262;
}

/* Button styling */
.motorola .btn {
  display: inline-block;
  background: #bb5520;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
  align-self: flex-start; 
  text-align: left;
  margin-right: 440px;
}
.motorola .btn:hover {
  background: #993f16;
}


@media (max-width: 768px) {
  .motorola {
    flex-direction: column;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  }

  .motorola-content {
    margin-left: 0;
    text-align: center;
    align-items: center;
  }

  .motorola-content h2{
    text-align: center;
    font-size: 1.6rem;
    padding: 0 5px;
    
  }
  .motorola-content p {
    text-align: center;
    font-size: 1rem;
  }

  .motorola .btn {
    align-items: center;
    text-align: center;
    margin: 0 auto;
    padding: 9px;
    
    
  }
}

@media (max-width: 768px) {
  
  .property {
    flex-direction: column;   
    padding: 20px 15px;
    margin: 20px 10px;
    gap: 20px;
  }

  .property-content {
    flex: 1 1 100%;
    text-align: center;       
    padding: 20px 10px;
  }

  .property-content h2 {
    font-size: 1.8rem;
  }

  .property-content p {
    font-size: 1.3rem;
  }

}

/*TESTIMONIALS SECTION*/
/* Container for reviews */
.client-reviews {
  background: #09090b;
  padding: 80px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.client-reviews .reviews-header h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 40px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Layout of review cards */
.client-reviews .reviews-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual cards */
.client-reviews .review-card {
  background: rgba(20, 20, 25, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 16px;
  box-shadow: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.client-reviews .review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 9, 20, 0.4);
  box-shadow: none;
}

/* Client image */
.client-reviews .review-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 2px solid #e50914;
}

/* Testimonial text */
.client-reviews .review-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
  font-style: normal;
}

/* Author name and location */
.client-reviews .review-card h4 {
  font-size: 1.1rem;
  margin: 0;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 5px;
}

.client-reviews .review-card span {
  font-size: 0.85rem;
  color: #e50914;
  font-weight: 600;
  text-transform: uppercase;
}


@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-member {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .team-member {
    font-size: 0.95rem;
    padding: 15px;
  }
}
.client-reviews .stars {
  color: #ffc107;
  margin-bottom: 15px;
  font-size: 1.2rem;
}
/* ===== TESTIMONIALS ===== */


@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    margin-bottom: 20px;
  }
}


/* Footer */
.footer {
  background: #09090b;
  color: #a1a1aa;
  padding: 80px 5% 40px;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid rgba(229, 9, 20, 0.25);
  box-sizing: border-box;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer h3,
.footer h4 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 25px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

/* Subtle accent line under titles */
.footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 35px;
  height: 2px;
  background: #e50914;
}

.footer p,
.footer a,
.footer li {
  font-size: 0.95rem;
  color: #a1a1aa;
  line-height: 1.7;
}

.footer a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: #e50914;
  padding-left: 3px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 12px;
}

.footer-office h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-about form {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  width: 100%;
}

.footer-about form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  background-color: #18181b;
  border-radius: 8px; 
  outline: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-about form input[type="email"]:focus {
  border-color: #e50914;
  box-shadow: 0 0 10px rgba(229, 9, 20, 0.2);
}

.footer-about button[type="submit"] {
  padding: 12px 20px;
  border: none;
  background-color: #e50914;
  color: #ffffff;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-about button[type="submit"]:hover {
  background-color: #b3070f;
  box-shadow: 0 0 15px rgba(229, 9, 20, 0.4);
}

.footer-office .map iframe {
  width: 100%;        
  max-width: 100%;  
  height: 180px;      
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.f-social-icons {
  margin-top: 25px;
  display: flex;
  gap: 12px;
}

.f-social-icons a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.f-social-icons a:hover {
  background: #e50914;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(229, 9, 20, 0.3);
}

/* Bottom  */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 25px;
  font-size: 0.85rem;
  color: #71717a;
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 5% 30px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-about form {
    flex-direction: row;
  }
  .f-social-icons {
    justify-content: flex-start;
  }
  .footer h4::after {
    left: 0;
  }
}


/* =====ADJUSTMENTS ===== */
@media (max-width: 480px) {
  body {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  h1, h2 {
    font-size: 1.5rem;
  }

  .btn {
    width: 100%;
  }
}

/*ABOUT=>SECTION: MEET OUR TEAM LEAD*/
/* =>>ABOUT HERO*/
.hero-a {
  overflow: hidden;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  height: 1500px;                                
  display: flex;
  align-items: flex-start;       
  justify-content: flex-start; 
  text-align: left;
  margin: 5px;
  color: #fefcfc;
  background: rgba(78, 78, 77, 0.5);
  box-sizing: border-box;
  background-image: url("images/About.png");
  background-size: cover;           
  background-repeat: no-repeat;     
  background-position: center;
  
}

.hero-content-a {
  max-width: 800px; 
  width: 100%;
  align-self: start;
  padding: 90px;
}



.hero-a h3 {
  font-size:2.8rem; 
  text-align: left;
  margin-top: 90px;
 font-family: 'Nourd', sans-serif;
  font-weight: 300;
  line-height: 1.3;
}

.team {
  text-align: center;
  padding: 60px 20px;
  background-color: rgb(244, 241, 241);
  
}

.team-content h2 {
  font-size: 3rem;
  color: #626262;
  margin-bottom: 30px;
  font-family: 'Nourd', sans-serif;
  font-weight: 700;
}


@media (max-width: 768px) {
  .hero-a {
    height: auto; 
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    height: 600px;

  }

  .hero-content-a {
    padding: 80px 20px;

  }

  .hero-a h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
    
  }

  .team {
    padding: 40px 15px;
  }

  .team-content h2 {
    font-size: 2.2rem;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .hero-content-a {
    padding: 30px 15px;
    
  }

  .hero-a h3 {
    font-size: 1.5rem;
    text-align: left;
    
  }

  .team-content h2 {
    font-size: 1.8rem;
  }
}

.director-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  padding: 40px 8%;
  max-width: 1200px;
  margin: 0 auto;
}
.director {
  display: flex;
  align-items: center;
  background: rgba(20, 20, 25, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 25px;
  gap: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.director:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 9, 20, 0.4);
  box-shadow: 0 10px 25px rgba(229, 9, 20, 0.15);
}

.director-img {
  flex: 0 0 160px;
  width: 160px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.director-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.director-info {
  flex: 1;
  padding-top: 0;
  align-self: center;
}
.director-info h3 {
  font-size: 1.8rem;
  line-height: 1.2;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 5px; 
  text-align: left;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
}

.director-info .position {
  font-weight: bold;
  color: #e50914;
  margin-bottom: 12px;
  font-size: 1.1rem;
  text-align: left;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: 1px;
}

.director-info p {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
}

/* Mobile Devices */
@media (max-width: 991px) {
  .director-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 5%;
  }
}

@media (max-width: 768px) {
  .director {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 20px;
  }
  .director-img {
    flex: 0 0 160px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
  }
  .director-info {
    text-align: center;
  }
  .director-info h3 {
    font-size: 1.5rem;
    text-align: center;
  }
  .director-info .position {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 10px;
  }
  .director-info p {
    font-size: 0.9rem;
    text-align: center;
  }
}
/* =>>SERVICES :PATENT SERVICES HERO*/
.hero-p {
  min-height: 95vh;                                 
  display: flex;
  align-items: center;                            
  justify-content: center;                       
  text-align:center;
  color: #fefcfc;
  background: #ba882b;
  margin:5px ;
  box-sizing: border-box;
  background-image: url("images/Patent\ services.png");
  background-position: center;
  background-size: cover;
  padding: 50px 8%;
 } 
.service-content h1 {
  font-size: 3.8rem;
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700; 
}

.service-content p {
  font-size: 1.3rem;
  margin: 10px 0 20px;
  text-align: center;
  line-height: 1.2;
  font-family: 'DM Sans';
}
.service-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:30px;
  text-align: center;
  padding: 20px ;
  box-sizing: border-box;

}

.service-p-item {
  flex: 1 1 calc(33.333% - 30px); /* ensures 3 per row */
  max-width: calc(33.333% - 30px); 
  border: 3px solid white;
  border-radius: 32px;
  background-color: #ba882b;
  height: 220px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-weight: 400;
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  font-family: 'DM Sans ',sans-serif;
}

.service-p-item:hover {
  background-color: rgb(244, 243, 242);
  color: rgb(216, 143, 8);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  font-weight: 700;
}

.content-s{
  min-width: 1200px;
  background-color: white;
  border-radius: 32px;
  margin: 30px ;
  color: black;
  padding: 20px 5%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
   display: flex;
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
}
.content-s h2{
  color: #ba882b;
  text-transform: uppercase;
  font-size: 2.3rem;
  margin: 30px ;
  line-height: 1.4;
  text-align: left;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: 'Nourd', sans-serif;
  
}
.content-s p{
  color: grey;
  line-height: 1.7;
  font-size: 1.2rem;
  margin: 20px;
  text-align: left;
  align-items: center;
  padding: 0 25px;
  font-family: 'DM Sans';
}
.content-s .btn {
  display: inline-block;
  background: #ba882b;
  color: #fff;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 25px;
  font-family: 'DM Sans';
}

.content-s .btn:hover {
  cursor: pointer;
  background: darkorange;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.feature-item{
  flex: 1 1 calc(33.333% - 30px); /* ensures 3 per row */
  max-width: calc(33.333% - 30px);
  border: 3px solid #fff;
  background-color: #ba882b;
  border-radius: 28px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 400;
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-top: 10px;
  transition: all 0.35s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  padding: 20px 5%;
  background-color: rgba(186, 136, 43, 0.7);
  font-family: 'DM Sans ',sans-serif;
}
/* ✅ Mobile & Tablet Responsive Design */
@media (max-width: 768px) {

  /* HERO SECTION */
  .hero-p {
    min-height: 70vh;
    padding: 40px 5%;
    background-position: center;
    background-size: cover;
    text-align: center;
  }

  .service-content h1 {
    font-size: 2.4rem;
    margin-top: 15px;
  }

  .service-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 10px 15px;
  }

  /* SERVICE SECTION */
  .service-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 10px;
  }

  .service-p-item {
    flex: 1 1 100%;
    max-width: 90%;
    height: auto;
    font-size: 1.4rem;
    padding: 25px 10px;
    margin-top: 15px;
  }

  /* CONTENT SECTION */
  .content-s {
    min-width: 100%;
    margin: 15px auto;
    padding: 25px 6%;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  }

  .content-s h2 {
    font-size: 1.8rem;
    text-align: center;
    margin: 15px 0;
  }

  .content-s p {
    font-size: 1rem;
    text-align: center;
    line-height: 1.6;
    margin: 10px 0;
    padding: 0 10px;
  }

  .content-s .btn {
    padding: 10px 9px;
    font-size: 1rem;
    margin-top: 10px;
  }

  /* FEATURE SECTION */
  .feature-item {
    flex: 1 1 100%;
    max-width: 90%;
    height: 150px;
    font-size: 1.3rem;
    padding: 30px 60px;
    margin-top: 15px;
    text-align: center;
  }
}

/* ✅ Very Small Devices (Phones under 480px) */
@media (max-width: 480px) {

  .service-content h1 {
    font-size: 1.9rem;
  }

  .service-content p {
    font-size: 0.95rem;
  }

  .service-p-item,
  .feature-item {
    font-size: 1.2rem;
    padding: 30px 60px;
    height: 150px;
    width: 300px;
  }

  .content-s h2 {
    font-size: 1.6rem;
  }

  .content-s p {
    font-size: 0.95rem;
  }
}







.other-service {
  text-align: center;
  width: 100%;
  margin: 0 auto; 
  padding: 20px 7%;               
}

.other-service h2 {
  text-align: left;
  font-size: 3rem;
  color: grey;
  text-transform: uppercase;
  margin-left: 22px;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
/* ===== Other Services Grid ===== */
.other-service-grid {
  display: flex;
  justify-content: center;       /* centers items */
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;               /* wraps only on smaller screens */
  padding: 30px;
  box-sizing: border-box;
}

/* ===== Service Item Boxes ===== */
.o-service-item {
  flex: 1 1 18%;                 /* 5 boxes per row (each ~18% width + gaps) */
  min-width: 180px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  font-size: 1.3rem;
  text-transform: uppercase;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  cursor: pointer;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
}
.o-service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  filter: brightness(1.1);
}

/* ===== Individual Backgrounds ===== */
.o-service-item.o-service-bg-patent {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(255, 255, 0, 0.2)),
    url('images/Patent services.png') center/cover no-repeat;
}

.o-service-item.o-service-bg-trademarks {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(255, 255, 0, 0.2)),
    url('images/Trademark\ servicews.png') center/cover no-repeat;
}

.o-service-item.o-service-bg-design {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(255, 255, 0, 0.2)),
    url('images/Design Services.png') center/cover no-repeat;
}

.o-service-item.o-service-bg-copyright {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(255, 255, 0, 0.2)),
    url('images/Copyright\ Services.png') top/cover no-repeat;
}

.o-service-item.o-service-bg-litigation {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(255, 255, 0, 0.2)),
    url('images/Home and Litigation services.png') center/cover no-repeat;
}

.o-service-item.o-service-bg-ipmanagement {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(255, 255, 0, 0.2)),
    url('images/IP\ Management\ Services.png') center/cover no-repeat;
}

.o-service-item.o-service-bg-drafting-non-provisional {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(255, 255, 0, 0.2)),
    url('images/Patent services.png') center/cover no-repeat;
}
@media (max-width: 1024px) {
  .o-service-item {
    flex: 1 1 30%;  /* 3 per row */
    font-size: 1.2rem;
    height: 140px;
  }
  .other-service h2 {
    font-size: 2.5rem;
  }
  .other-service-grid {
    padding: 20px;
    gap: 15px;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .o-service-item {
    flex: 1 1 45%;  /* 2 per row */
    font-size: 1rem;
    height: 120px;
  }
  .other-service h2 {
    font-size: 2rem;
    margin-left: 0;
    text-align: center;
  }
  .other-service-grid {
    padding: 15px;
    gap: 10px;
  }
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
  .o-service-item {
    flex: 1 1 100%;  /* 1 per row */
    font-size: 0.9rem;
    height: 100px;
  }
  .other-service h2 {
    font-size: 1.5rem;
  }
}

/* =>>SERVICES :TRADEMARK SERVICES HERO*/
/* ===== Hero Section ===== */
.hero-t {
  min-height:95vh;                                 
  display: flex;
  align-items: center;                            
  justify-content: center;                       
  text-align:center;
  color: #fefcfc;
  margin: 5px;
  box-sizing: border-box;
  background-image: url("images/Trademark\ servicews.png");
  background-position: center;
  background-size: cover;
  padding: 50px 8%;
  
 } 
.trade-heading h1 {
  font-size: 3.8rem;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
}

.trade-heading p {
  font-size: 1.3rem;
  margin: 10px 0 20px;
  text-align: center;
  line-height: 1.2;
  font-family: 'DM Sans';
}
.service-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:30px;
  text-align: center;
  padding: 20px ;
  box-sizing: border-box;
}

.service-t-item {
  flex: 1 1 calc(33.333% - 30px); /* ensures 3 per row */
  max-width: calc(33.333% - 30px); 
  border: 3px solid white;
  border-radius: 32px;
  background-color:  rgba(91, 115, 113, 0.5);
  height: 220px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-weight: 400;
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  font-family: 'DM Sans ',sans-serif;
}

.service-t-item:hover {
  background-color: rgb(244, 243, 242);
  color: #5b7371;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  font-weight: 700;
}

.content-t{
  min-width: 1300px;
  background-color: white;
  border-radius: 32px;
  margin: 30px ;
  color: black;
  padding: 20px 5%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
}
.content-t h2{
  color: #5b7371;
  text-transform: uppercase;
  font-size: 2.2rem;
  margin: 30px;
  line-height: 1.4;
  text-align: left;
  align-items: center;
  font-weight: 600;
  font-family: 'Nourd', sans-serif;
}
.content-t p{
  color: grey;
  line-height: 1.7;
  font-size: 1.2rem;
  margin: 20px;
  text-align: left;
  align-items: center;
  padding: 0 35px;
}
.content-t .btn {
  display: inline-block;
  background: #5b7371;
  color: #fff;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}

.content-t .btn:hover {
  cursor: pointer;
  background: #81aeaa;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


.service-features{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:30px;
  text-align: center;
  padding: 40px 20px ;
  box-sizing: border-box;
}
.feature-item-t{
  flex: 1 1 calc(33.333% - 30px); /* ensures 3 per row */
  max-width: calc(33.333% - 30px);
  border: 3px solid #fff;
  border-radius: 28px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 400;
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-top: 10px;
  transition: all 0.35s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  padding: 20px 5%;
  background-color: rgba(91, 115, 113, 0.5);
  font-family: 'DM Sans ',sans-serif;
}
/* ✅ Mobile View (below tablets) */
@media (max-width: 768px) {

  /* HERO SECTION */
  .hero-t {
    min-height: 70vh;
    padding: 40px 5%;
    background-position: center;
    background-size: cover;
    text-align: center;
  }

  .trade-heading h1 {
    font-size: 2.4rem;
    margin-top: 10px;
  }

  .trade-heading p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 10px 15px;
  }

  /* SERVICE CONTAINER */
  .service-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 10px;
  }

  .service-t-item {
    flex: 1 1 100%;
    max-width: 90%;
    height: auto;
    font-size: 1.4rem;
    padding: 25px 10px;
    margin-top: 15px;
  }

  /* CONTENT SECTION */
  .content-t {
    min-width: 100%;
    margin: 15px auto;
    padding: 20px 6%;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  }

  .content-t h2 {
    font-size: 1.8rem;
    text-align: center;
    margin: 15px 0;
  }

  .content-t p {
    font-size: 1rem;
    text-align: center;
    line-height: 1.6;
    margin: 10px 0;
    padding: 0 10px;
  }

  .content-t .btn {
    padding: 10px 9px;
    font-size: 1rem;
    margin-top: 10px;
  }

  /* FEATURES SECTION */
  .service-features {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 10px;
  }

  .feature-item-t {
    flex: 1 1 100%;
    max-width: 90%;
    height: auto;
    font-size: 1.3rem;
    padding: 25px 10px;
    margin-top: 15px;
  }
}

/* ✅ Very Small Devices (Phones under 480px) */
@media (max-width: 480px) {

  .trade-heading h1 {
    font-size: 1.9rem;
  }

  .trade-heading p {
    font-size: 0.95rem;
  }

  .service-t-item,
  .feature-item-t {
    font-size: 1.2rem;
    padding: 30px 60px;
    height: 150px;
    width: 300px;
  }

  .content-t h2 {
    font-size: 1.6rem;
  }

  .content-t p {
    font-size: 0.95rem;
  }
}



  

/* =>>SERVICES :DESGN SERVICES HERO*/
.hero-d {
  min-height: 95vh;                                 
  display: flex;
  align-items: center;                            
  justify-content: center;                       
  text-align:center;
  color: #fefcfc;
  background: #dc7743;
  margin:5px ;
  box-sizing: border-box;
  background-image:url("images/Design\ Services.png") ;
  background-size: cover;          
  background-repeat: no-repeat;
  background-position:center ;
  padding: 50px 8%;
}
.design-content h1 {
  margin-top: 50px;
  font-size: 3.9rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
}

.design-content p {
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.2;
  font-family: 'DM Sans';
}



.service-d-item {
  flex: 1 1 calc(33.333% - 30px); /* ensures 3 per row */
  max-width: calc(33.333% - 30px); 
  border: 3px solid white;
  border-radius: 32px;
  background-color: rgba(220, 119, 67, 0.8);
  height: 220px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-weight: 400;
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  font-family: 'DM Sans ',sans-serif;
}

.service-d-item:hover {
  background-color: rgb(244, 243, 242);
  color: #db9111;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  font-weight: 700;
}
.content-d{
  min-width: 1300px;
  text-align: center;
  background-color: white;
  border-radius: 32px;
  margin: 30px ;
  color: black;
  padding: 20px 5%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
}
.content-d h2{
  color: #dc7743;
  text-transform: uppercase;
  font-size: 2.2rem;
  margin: 30px ;
  line-height: 1.4;
  text-align: left;
  align-items: center;
  font-weight: 600;
  font-family: 'Nourd', sans-serif;
}
.content-d p{
  color: gray;
  line-height: 1.7;
  font-size: 1.2rem;
  margin: 20px;
  text-align: left;
  align-items: center;
  padding: 0 35px;
  
}
.content-d .btn {
  display: inline-block;
  background: #dc7743;
  color: #fff;
  padding: 12px 28px;
  border-radius: 32px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}

.content-d .btn:hover {
  cursor: pointer;
  background: #e77a0e;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.feature-item-ass{
  width: 356.65px;
  border: 3px solid white;
  border-radius: 32px;
  background-color: rgba(220, 119, 67, 0.8);
  height: 220px; 
  display: flex; 
  text-align: center;
  align-items: center; 
  justify-content: center; 
  font-weight:400;
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-top: 20px;
  transition: all 0.3s ease;
  margin-bottom: 0 auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  font-family: 'DM Sans ',sans-serif;
}
/* ✅ Mobile & Tablet Responsive Design */
@media (max-width: 768px) {

  /* HERO SECTION */
  .hero-d {
    min-height: 70vh;
    padding: 40px 5%;
    background-position: center;
    background-size: cover;
    text-align: center;
  }

  .design-content h1 {
    font-size: 2.4rem;
    margin-top: 20px;
  }

  .design-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 10px 15px;
  }

  /* SERVICE ITEMS */
  .service-d-item {
    flex: 1 1 100%;
    max-width: 90%;
    height: auto;
    font-size: 1.4rem;
    padding: 25px 10px;
    margin-top: 15px;
    text-align: center;
  }

  /* CONTENT SECTION */
  .content-d {
    min-width: 100%;
    margin: 15px auto;
    padding: 25px 6%;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  }

  .content-d h2 {
    font-size: 1.8rem;
    text-align: center;
    margin: 15px 0;
  }

  .content-d p {
    font-size: 1rem;
    text-align: center;
    line-height: 1.6;
    margin: 10px 0;
    padding: 0 10px;
  }

  .content-d .btn {
    padding: 10px 9px;
    font-size: 1rem;
    margin-top: 10px;
  }

  /* FEATURE BOXES */
  .feature-item-ass {
    width: 90%;
    height: auto;
    font-size: 1.3rem;
    padding: 25px 10px;
    margin-top: 15px;
    text-align: center;
  }
}

/* ✅ Very Small Devices (Phones under 480px) */
@media (max-width: 480px) {

  .design-content h1 {
    font-size: 1.9rem;
  }

  .design-content p {
    font-size: 0.95rem;
  }

  .service-d-item,
  .feature-item-ass {
    font-size: 1.2rem;
    padding: 30px 60px;
    height:150px ;
    width: 300px;
  }

  .content-d h2 {
    font-size: 1.6rem;
  }

  .content-d p {
    font-size: 0.95rem;
  }
}


/* =>>SERVICES :COPYRIGHT SERVICES HERO*/
.hero-c {
  min-height: 95vh;                                 
  display: flex;
  align-items: center;                            
  justify-content: center;                       
  text-align:center;
  color: #fefcfc;
  background: #5f7d5b;
  box-sizing: border-box;
  background-image: url("images/Copyright\ Services.png");
  background-position: top;
  background-size: cover;
  padding: 50px 8%;
}
.copy-content h1 {
  font-size: 3.9rem;
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
  text-transform: uppercase;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
}

.copy-content p {
  font-size: 1.3rem;
  margin: 10px 0 20px;
  text-align: center;
  line-height: 1.2;
  font-family:'DM Sans';
}
.service-c-item {
  flex: 1 1 calc(33.333% - 30px); /* ensures 3 per row */
  max-width: calc(33.333% - 30px); 
  border: 3px solid white;
  border-radius: 32px;
  background-color: rgba(95, 125, 91, 0.6);
  height: 220px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-weight: 400;
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  font-family: 'DM Sans ',sans-serif;
}


.service-c-item:hover {
  background-color: rgb(244, 243, 242);
  color: #3b6136;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  font-weight: 700;
}

.content-c{
  min-width: 1300px;
  text-align: center;
  background-color: white;
  border-radius: 32px;
  margin: 30px ;
  color: black;
  padding: 30px 5%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
}
.content-c h2{
  color: #5f7d5b;
  text-transform: uppercase;
  font-size: 2.2rem;
  line-height: 1.4;
  text-align: left;
  align-items: center;
  margin: 30px;
  font-weight: 600;
  font-family: 'Nourd', sans-serif;
}
.content-c p{
  color: gray;
  line-height: 1.7;
  font-size: 1.2rem;
  text-align: left;
  align-items: center;
  margin: 20px;
  padding: 0 35px;
}
.content-c .btn {
  display: inline-block;
  background: #5f7d5b;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}

.content-c .btn:hover {
  cursor: pointer;
  background: #254721;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 📱 Responsive Design for Copyright Section */
@media (max-width: 1024px) {
  .hero-c {
    padding: 40px 5%;
    min-height: auto;
    background-position: center;
  }

  .copy-content h1 {
    font-size: 3rem;
  }

  .copy-content p {
    font-size: 1.1rem;
  }

  .content-c {
    min-width: 90%;
    margin: 20px auto;
    padding: 25px 5%;
  }

  .content-c h2 {
    font-size: 1.8rem;
    text-align: center;
    margin: 20px 0;
  }

  .content-c p {
    font-size: 1.1rem;
    padding: 0 20px;
    text-align: center;
  }

  .service-c-item {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    font-size: 1.8rem;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .hero-c {
    flex-direction: column;
    padding: 30px 5%;
    background-position: center;
  }

  .copy-content h1 {
    font-size: 2.4rem;
    margin-top: 10px;
  }

  .copy-content p {
    font-size: 1rem;
    line-height: 1.4;
  }

  .content-c {
    min-width: 100%;
    padding: 20px 6%;
    border-radius: 20px;
    margin:15px auto ;
  }

  .content-c h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .content-c p {
    font-size: 1rem;
    text-align: center;
    padding: 0 10px;
  }

  .service-c-item {
    flex: 1 1 100%;
    max-width: 100%;
    font-size: 1.6rem;
    height: 150px;
    width: 300px;
    margin-top: 15px;
  }

  .content-c .btn {
    padding: 10px 22px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .copy-content h1 {
    font-size: 2rem;
  }

  .copy-content p {
    font-size: 0.95rem;
  }

  .service-c-item {
    font-size: 1.2rem;
    height: 150px;
    padding: 30px 60px;
    width: 300px;
    margin: 5px auto;
  }

  .content-c h2 {
    font-size: 1.4rem;
  }

  .content-c p {
    font-size: 0.95rem;
  }
}




/* =>>SERVICES :IP Management SERVICES HERO*/
.hero-ip {
  min-height: 95vh;                                 
  display: flex;
  align-items: center;                            
  justify-content: center;                       
  text-align:center;
  color: #fefcfc;
  background: #5f7d5b;
  margin:5px ;
  box-sizing: border-box;
  background-image:url("images/IP\ Management\ Services.png") ;
  background-size: cover;          
  background-repeat: no-repeat;
  background-position:center ;
  padding: 50px 8%;
}
.ip-content h1 {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
  text-transform: uppercase;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
}

.ip-content p {
  font-size: 1.3rem;
  margin: 10px 0 20px;
  text-align: center;
  line-height: 1.2;
  font-family: 'DM Sans';
}

.service-c-item:hover {
  background-color: rgb(244, 243, 242);
  color: #3b6136;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  font-weight: bolder;
}
.content-ip{
  min-width: 1300px;
  background-color: white;
  border-radius: 32px;
  margin: 30px;
  color: black;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px 5%;
  display: flex;
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
}
.content-ip h2{
  color: #5f7d5b;
  text-transform: uppercase;
  font-size: 2.2rem;
  margin: 30px ;
  line-height: 1.4;
  text-align: left;
  font-weight: 600;
  font-family: 'Nourd', sans-serif;
}
.content-ip p{
  color: gray;
  line-height: 1.7;
  font-size: 1.2rem;
  margin: 20px;
  text-align: left;
  align-items: center;
  padding: 0 35px;
}
.content-ip .btn {
  display: inline-block;
  background: #5f7d5b;
  color: #fff;
  padding: 12px 28px;
  border-radius: 32px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}


.content-ip .btn:hover {
  cursor: pointer;
  background: #4fd43e;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.feature-item-aud{
  width: 368.65px;
  border: 3px solid white;
  border-radius: 32px;
  height: 220px; 
  display: flex; 
  text-align: center;
  align-items: center; 
  justify-content: center; 
  font-weight: 400;
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-top: 20px;
  transition: all 0.3s ease;
  margin-bottom: 0 auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  background-color: rgba(95, 125, 91, 0.6);
  font-family: 'DM Sans ',sans-serif;
  
}
/* 📱 Responsive Design for IP Management Services */

/* ---------- Tablet View (≤768px) ---------- */
@media (max-width: 768px) {

  .hero-ip {
    min-height: auto;
    padding: 40px 6%;
    background-position: center;
    background-size: cover;
    flex-direction: column;
    text-align: center;
  }

  .ip-content h1 {
    font-size: 2.4rem;
    margin-top: 20px;
    line-height: 1.3;
  }

  .ip-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 15px 0;
    padding: 0 10px;
  }

  .feature-item-aud {
    width: 45%;
    height: 180px;
    font-size: 1.4rem;
    margin-top: 15px;
    border-radius: 28px;
  }

  .content-ip {
    min-width: 100%;
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    border-radius: 24px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
  }

  .content-ip h2 {
    font-size: 1.8rem;
    text-align: center;
    margin: 15px 0;
  }

  .content-ip p {
    font-size: 1rem;
    text-align: center;
    line-height: 1.6;
    padding: 0 10px;
  }

  .content-ip .btn {
    padding: 10px 9px;
    font-size: 1rem;
    border-radius: 25px;
  }
}

/* ---------- Small Mobile View (≤480px) ---------- */
@media (max-width: 480px) {

  .hero-ip {
    padding: 30px 5%;
    flex-direction: column;
    text-align: center;
    background-position: center;
    background-size: cover;
  }

  .ip-content h1 {
    font-size: 1.9rem;
    margin-top: 10px;
    line-height: 1.3;
  }

  .ip-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 10px 0 15px;
    padding: 0 5px;
  }

  .feature-item-aud {
    width: 90%;
    height: 150px;
    width: 300px;
    font-size: 1.1rem;
    margin-top: 12px;
    border-radius: 22px;
  }

  .content-ip {
    min-width: 100%;
    width: 100%;
    margin: 10px auto;
    padding: 15px;
    border-radius: 18px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    padding: 20px 6%;
  }

  .content-ip h2 {
    font-size: 1.4rem;
    text-align: center;
    margin: 10px 0;
    line-height: 1.3;
    padding: 0 20px;
  }

  .content-ip p {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.5;
    padding: 0 25px;
    margin: 10px 0;
  }

  .content-ip .btn {
    padding: 8px 18px;
    font-size: 0.9rem;
    border-radius: 20px;
  }
}






/*Litigation SECTON*/
.hero-l {
  min-height: 95vh;                                 
  display: flex;
  align-items: center;                            
  justify-content: center;                       
  text-align:center;
  color: #fefcfc;
  background: #dc7743;
  margin:5px ;
  box-sizing: border-box;
  background-image:url("images/Design\ Services.png") ;
  background-size: cover;          
  background-repeat: no-repeat;
  background-position:center ;
  padding: 50px 8%;
}
.l-content h1 {
  margin-top: 50px;
  font-size: 3.9rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
}

.l-content p {
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.2;
  font-family: 'DM Sans';
}
.service-l-item {
  flex: 1 1 calc(33.333% - 30px); /* ensures 3 per row */
  max-width: calc(33.333% - 30px); 
  border: 3px solid white;
  border-radius: 32px;
  background-color: rgba(220, 119, 67, 0.8);
  height: 220px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-weight: 400;
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  font-family: 'DM Sans ',sans-serif;
}

.service-l-item:hover {
  background-color: rgb(244, 243, 242);
  color: #db9111;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  font-weight: bolder;
}
.content-l{
  min-width: 1300px;
  background-color: white;
  border-radius: 32px;
  margin: 30px ;
  color: black;
  padding: 20px 5%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
}
.content-l h2{
  color: #dc7743;
  text-transform: uppercase;
  font-size: 2.2rem;
  margin: 30px ;
  line-height: 1.4;
  text-align: left;
  font-weight: 600;
  font-family: 'Nourd', sans-serif
   
}
.content-l p{
  color: gray;
  line-height: 1.7;
  font-size: 1.2rem;
  margin: 20px;
  text-align: left;
  align-items: center;
  padding: 0 35px;
  
  
}
.content-l .btn {
  display: inline-block;
  background: #dc7743;
  color: #fff;
  padding: 12px 28px;
  border-radius: 32px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}

.content-l .btn:hover {
  cursor: pointer;
  background: #e77a0e;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.feature-item-l{
  width: 365.65px;
  border: 3px solid white;
  border-radius: 32px;
  background-color: rgba(220, 119, 67, 0.8);
  height: 220px; 
  display: flex; 
  text-align: center;
  align-items: center; 
  justify-content: center; 
  font-weight:400;
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-top: 20px;
  transition: all 0.3s ease;
  margin-bottom: 0 auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  font-family: 'DM Sans ',sans-serif;
}

/* ---------- Tablet & Small Laptop View (≤768px) ---------- */
@media (max-width: 768px) {

  .hero-l {
    min-height: auto;
    padding: 40px 6%;
    background-position: center;
    background-size: cover;
    flex-direction: column;
    text-align: center;
  }

  .l-content h1 {
    font-size: 2.8rem;
    margin-top: 25px;
    line-height: 1.3;
  }

  .l-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 15px 0;
    padding: 0 10px;
  }

  .feature-item-l,
  .service-l-item {
    width: 85%;
    max-width: 320px;
    height: 160px;
    font-size: 1.4rem;
    margin: 12px auto;
    border-radius: 25px;
    padding: 20px;
  }

  .content-l {
    width: 95%;
    min-width: auto;
    margin: 20px auto;
    padding: 25px;
    border-radius: 24px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
  }

  .content-l h2 {
    font-size: 1.8rem;
    text-align: center;
    margin: 15px 0;
  }

  .content-l p {
    font-size: 1rem;
    text-align: center;
    line-height: 1.6;
    padding: 0 15px;
  }

  .content-l .btn {
    padding: 10px 22px;
    font-size: 1rem;
    border-radius: 25px;
  }
}

/* ---------- Mobile View (≤480px) ---------- */
@media (max-width: 480px) {

  .hero-l {
    text-align: center;
    background-position: center;
    background-size: cover;
    padding: 30px 5%;
  }

  .l-content h1 {
    font-size: 2rem;
    margin-top: 10px;
    line-height: 1.3;
  }

  .l-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 12px 0;
    padding: 0 5px;
  }

  .feature-item-l,
  .service-l-item {
    width: 90%;
    max-width: 300px;
    height: 180px;
    font-size: 1rem;
    margin: 10px auto;
    border-radius: 20px;
    padding: 30px 60px;
  }

  .content-l {
    width: 95%;
    min-width: auto;
    margin: 10px auto;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  }

  .content-l h2 {
    font-size: 1.4rem;
    text-align: center;
    margin: 10px 0;
    line-height: 1.4;
  }

  .content-l p {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.5;
    margin: 10px 0;
    padding: 0 10px;
  }

  .content-l .btn {
    padding: 8px 18px;
    font-size: 0.9rem;
    border-radius: 20px;
  }
}




/*=> CARRER SECTION=>*/
.hero-carrer {
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fefcfc;
  background:
    url("images/oldw.jpg") center/cover no-repeat;
  box-sizing: border-box;
  margin: 5px;
  padding: 30px 5%;

}

.carrer-content {
  width: 100%;
  max-width: 1500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  padding: 0 35px; /* small padding for mobile */
}

.carrer-content h1 {
  font-size:  5rem; 
  font-weight: 700;
  margin: 30px 0;
  text-transform: uppercase;
  color: #ffffff;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

.carrer-content p {
  font-size: 1.5rem; 
  margin: 10px 0 30px 0;
  text-align: justify; 
  line-height: 1.3;
  color: #fefefe;
  max-width: 1050px;
  font-family: 'DM Sans', sans-serif;
}
.carrer-section {
  display: flex;
  flex-direction: column;
  align-items: center; 
  gap: 20px;          
  padding: 0 15px;
  max-width: 100%; 
  margin: 0 auto;
}
.carrer-item{
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #f9f9f9;
  width: 1100px;
  border-bottom: 1px solid white;
 
}

.carrer-dropdown {
  text-align: center;
  padding: 50px 2%;
  
}

.carrer-dropdown h1 {
  font-size: 3rem;
  margin-bottom: 30px;
  font-weight: bolder;
  color: #f7fdfb;
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  
}

.dropbtn {
  width: 100%;
  background-color: white;
  color:#7ab1a2 ;
  padding: 15px;
  text-align: left;
  text-transform: uppercase;
  border: none;
  font-size: 1.9rem ;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
  border-radius: 8px;
  
}

.dropbtn:hover {
  color: #1ad9a6;
}

.dropdown-content {
  display: none;
  padding: 20px;
  text-align: left;
  text-transform: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #86ceb8da;  

}
.dropdown-content p{
  line-height: 1.5;
  font-size: 1.2rem;
  background: none;
  font-family: 'DM Sans', sans-serif;
}
.dropdown-content a {
  display: inline-block;
  padding: 10px 18px;
  font-size: 1.1rem;
  background-color: #ffffff;
  color: #57ac98;
  text-decoration: none;
  border-radius: 36px;
  margin: 8px 0;
  transition: all 0.3s ease;
}

/* Hover effect */
.dropdown-content a:hover {
  background-color: #57ac98;
  color: #ffffff;
}

/* Responsive styles */
@media (max-width: 768px) {
  .dropdown-content a {
    display: block;
    width: 40%;
    text-align: center;
    font-size: 0.7rem;
    padding: 8px 12px;
    margin: 0 auto;
  }
}

.carrer-item.active .dropdown-content {
  display: block;
}

.carrer-item.active .dropbtn::after {
  content: "▲";
  position: absolute;
  right: 15px;
}
.dropbtn::after {
  content: "▼";
  position: absolute;
  right: 15px;
}
@media (max-width: 768px) {
  .hero-carrer {
    padding: 40px 5%;
    background-size: cover;
    background-attachment: scroll;
    text-align: center;
  }

  .carrer-content {
    padding: 0 15px;
  }

  .carrer-content h1 {
    font-size: 2.8rem;
    margin: 20px 0;
    line-height: 1.2;
  }

  .carrer-content p {
    font-size: 1.1rem;
    text-align: justify;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .carrer-section {
    width: 100%;
    gap: 15px;
    padding: 0;
  }

  .carrer-item {
    width: 100%;
    border-radius: 8px;
  }

  .carrer-dropdown h1 {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }

  .dropbtn {
    font-size: 1.3rem;
    padding: 12px 15px;
  }

  .dropdown-content {
    padding: 15px;
  }

  .dropdown-content p {
    font-size: 1rem;
    line-height: 1.4;
  }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
  .hero-carrer {
    padding: 30px 3%;
  }

  .carrer-content h1 {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .carrer-content p {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .carrer-item {
    width: 100%;
  }

  .dropbtn {
    font-size: 0.9rem;
    padding: 10px 12px;
  }

  .dropdown-content {
    padding: 10px;
  }

  .dropdown-content p {
    font-size: 0.8rem;
  }
}

/*=> => COMMUNITY SECTION*/
.hero-comm {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgb(68, 61, 61);
  background: #ffffff;
  margin: 5px;
  box-sizing: border-box;
  padding: 30px 5%;
}

.comm-content{
  width: 1100px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  
}
.comm-content h1 {
  text-transform: uppercase;
  color: #bb5520;
  font-size: 3.9rem;
  line-height: 2;
  text-align: left;
  margin-top:30px;
  font-family:  'DM Sans ',sans-serif;
  font-weight: 600;
  padding: 0 40px;
}

.comm-content p {
  color: #3e3d3c;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 40px;
  max-width: 1100px;
  padding: 0 40px;
  font-family: 'DM Sans', sans-serif;

}

/* Photo Section */
.photo {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.photo-card {
  height: 70vh;
  width: 480px;
  background-color: #181717;
  color: white;
  border-radius: 30px;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 80px;
  
}
.photo1{
  background-image: 
  linear-gradient(to bottom right, rgba(255, 193, 112, 0.6), rgba(255, 143, 50, 0.6)),
  url("images/GIPC.png") ;
    
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.photo2{
  background-image: 
  linear-gradient(to bottom right, rgba(255, 235, 150, 0.6), rgba(255, 200, 60, 0.6)),
    url("images/Blogs.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.photo-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.photo-card h2 {
  font-size: 3.8rem;
  text-transform: uppercase;
  margin-top: 90px;
  text-align: center;
  font-family: 'Josefin Sans',sans-serif;
  color: white;
}

.photo-card p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: white;
  text-align: center;
  margin-top: 90px;
  font-family: 'DM Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}


/* Responsive */
@media (max-width: 768px) {
  .hero-comm {
    min-height: auto;
    padding: 40px 5%;
  }

  .comm-content {
    width: 100%;
    padding: 0;
  }

  .comm-content h1 {
    font-size: 2.4rem;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 20px;
    padding: 0 5px;
    font-family: 'Josefin Sans',sans-serif;
  }

  .comm-content p {
    font-size: 1.5rem;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 30px;
    padding: 0 20px;
    font-family: 'DM Sans',sans-serif;
  }

  .photo {
    flex-direction: column;
    gap: 20px;
  }

  .photo-card {
    width: 100%;
    height: 450px;
    padding: 40px 20px;
    border-radius: 20px;
  }

  .photo-card h2 {
    font-size: 2rem;
    margin-top: 40px;
  }

  .photo-card p {
    font-size: 1rem;
    margin-top: 40px;
    line-height: 1.5;
  }
}

/* === Small Mobile View (max-width: 480px) === */
@media (max-width: 480px) {
  .comm-content h1 {
    font-size: 2rem;
  }

  .comm-content p {
    font-size: 1rem;
  }

  .photo-card h2 {
    font-size: 1.9rem;
    text-align: center;
  }

  .photo-card p {
    font-size: 0.95rem;
    text-align: center;
  }
}
/* =>EVENT SECTION*/

.hero-event {
  min-height: 1600px;
  padding: 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;   /* fixed alignment */
  color: #fff;
  text-align: left;
  background-image: url("images/GIPC.png");
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  position: relative;
  margin: 5px;
}


.event-content {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  justify-content: center;
  padding: 60px 5%;
  box-sizing: border-box;
}

.event-text {
  width: 100%;
}

.event-text h1 {
  font-size: 3.9rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: left;
  padding: 0 50px;
  color: #fff;
  line-height: 1.2;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 900;
}

.event-text p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #f9f9f9;
  padding: 0 50px;
  text-align: justify;
  font-family: 'DM Sans', sans-serif;
}

/* === YEAR BUTTONS === */
.years {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0 40px;
  margin: 30px auto;
  max-width: 1100px;
}
.years-y {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin: 30px auto;
  max-width: 1100px;
  position: relative;
  padding: 0 20px;
  box-sizing: border-box;
}



.y-items {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 10px 50px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.y-items:hover {
  background: white;
  color: #dd8d48;
}

/* ==== Convention Info ==== */
.conventon {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  max-width: 1100px;
  margin: 20px auto;
  padding: 40px;
  color: orange;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  
}

/* Convention title */
.conventon h1 {
  flex-basis: 100%;
  margin-bottom: 10px;
  font-size: 3.2rem;
  text-transform: uppercase;
  text-align: center;
  color: #dd8d48;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
}

.p-box {
  display: flex;
  justify-content: center;    
  align-items: center;
  gap: 50px;                     
  width: 100%;
  padding: 0 60px;               
  box-sizing: border-box;
  margin-bottom: 30px;
  
}

.p-box h6 {
  margin: 0;
  font-weight: bold;
  font-size: 0.9rem;
  color: gray;
  text-align: center;
  padding: 5px 0;
  position: relative;
  font-family: 'DM Sans';
}
.p-box h6:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 20px;
  background-color: gray;
  margin-left: 25px;  
  vertical-align: middle;
}

/* Text + Image layout */
.conventon p {
  flex: 1 1 50%;
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
  text-align: left;
  font-family: 'DM Sans';
  margin-left: 30px;
  font-family: 'DM Sans'sans-serif;
}

.conventon-image {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centers all images */
  gap: 25px; /* spacing between images */
  flex: 1 1 45%;
}

.conventon-image img {
  width: 100%;
  max-width: 220px;
  height: 110px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-position: center;
  background-size: cover;
}
.conventon-image img:nth-child(3) {
  flex: 1 1 100%;
  max-width: 100%;
}
.conventon-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


@media (max-width: 768px) {
  .hero-event {
    padding: 40px 4%;
    background-size: cover;
    background-attachment: scroll;
  }

  .event-content {
    align-items: center;
    text-align: center;
    padding: 40px 20px;
  }

  .event-text h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    padding: 0 10px;
    text-align: left;
  }

  .event-text p {
    font-size: 1.5rem;
    padding: 0 10px;
    text-align: justify;
  }

  .years,
  .years-y {
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px auto;
    padding: 0;
  }

  .y-items {
    font-size: 1.2rem;
    padding: 9px 30px;
  }

  .conventon {
    flex-direction: column;
    padding: 30px 20px;
    align-items: center;
  }

  .conventon h1 {
    font-size: 2.8rem;
  }

  .p-box {
    display: flex;
    flex-direction: row;
    gap: 2px;
    padding: 0;
  
  }
   .p-box h6{
    font: 0.7rem sans-serif;
    padding: 0;
   }
 

  .conventon p {
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 20px;
    
  }

  .conventon-image img {
    max-width: 250px;
  }
}

/* Extra Small Devices (≤480px) */
@media (max-width: 480px) {
  .hero-event {
    padding: 30px 3%;
    margin: 0;
  }

  .event-text h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .event-text p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .y-items {
    font-size: 1rem;
    padding: 8px 25px;
  }

  .conventon {
    padding: 25px 15px;
  }

  .conventon h1 {
    font-size: 2rem;
  }

  .conventon-image img {
    max-width: 250px;
    height: 100px;
  }
  .conventon-image img:nth-child(3) {
    max-width: 250px;
    height: 100px;
}
}




/*=> BLOGS SECTON*/
.hero-blogs {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #f9f9f9; /* light neutral background */
  padding: 60px 5% 80px;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  margin: 5px;
  background-image: url("images/Blogs.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Content wrapper */
.blogs-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Left text side */
.blogs-text {
  text-align: left;
  max-width: 1000px;

}

.blogs-text h1 {
  font-size: 3.8rem;
  line-height: 1.3;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 60px ;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
}

.blogs-text p {
  font-size: 1.6rem;
  color: #f0efef;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 10px;
  text-align: justify;
  padding: 0 60px;
  font-family: 'DM sans';
}


/* === BLOG GRID SECTION === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  justify-items: center;
  font-family: 'Poppins', sans-serif;
  padding: 20px 5%;
}

/* Each blog card */
.blog-photo {
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 500px;
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-photo:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Image styling */
.blog-img {
  padding: 20px;
  overflow: hidden;
  padding-bottom: 0; 

}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-bottom: 0;
  border-radius: 20px;
}

/* Text below image */
.blog-photo-text {
  padding: 20px 25px;
  flex-grow: 1;
  text-align: left;
}

.blog-photo-text h5 {
  font-size: 1.3rem;
  color: #d69f44;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
}

.blog-photo-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

/* Button at bottom */
.read-more {
  background: linear-gradient(90deg, #d69f44, #d69f44);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 300;
  cursor: pointer;
  margin: 0 0 25px 25px;
  align-self: flex-start;
  transition: all 0.3s ease;
  font-family: 'DM Sans';
  
}
.v-btn{
  background: white;
  color: #d69f44;
  border: none;
  padding: 16px 30px;
  border-radius: 35px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  margin-right:290px;
  transition: all 0.3s ease;
  font-family:  'Josefin Sans', sans-serif;
  
}

.read-more:hover {
  background: linear-gradient(90deg, #dc7743, #f57c00);
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .hero-blogs {
    padding: 40px 3%;
    min-height: auto;
    background-size: cover;
  }

  .blogs-content {
    padding: 40px 20px;
    gap: 15px;
  }

  .blogs-text {
    text-align: center;
  }

  .blogs-text h1 {
    font-size: 2.8rem;
    padding: 0;
  }

  .blogs-text p {
    font-size: 1.5rem;
    padding: 0;
    text-align: justify;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 20px 3%;
  }

  .blog-photo {
    max-width: 100%;
    height: auto;
  }

  .blog-img img {
    border-radius: 15px;
  }

  .blog-photo-text h5 {
    font-size: 1.1rem;
  }

  .blog-photo-text p {
    font-size: 0.95rem;
  }

  .read-more {
    padding: 10px 24px;
    font-size: 0.95rem;
    margin: 0 0 20px 20px;
  }

  .v-btn {
    font-size: 1.2rem;
    padding: 14px 30px;
    margin: 30px auto 0;
    display: block;
  }
}

/* Extra small devices (max-width: 480px) */
@media (max-width: 480px) {
  .blogs-text h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .blogs-text p {
    font-size: 1rem;
    line-height: 1.4;
  }

  .blog-photo-text p {
    font-size: 0.9rem;
  }

  .read-more {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .v-btn {
    font-size: 1rem;
    padding: 12px 25px;
  }
}







/* =>CONTACT SECTION*/
.contact-hero {
  min-height: 1500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9; /* light neutral background */
  padding: 30px 5%;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  margin: 5px;
  background-image: url("images/ChatGPT\ Image\ May\ 1\,\ 2025\,\ 01_36_22\ PM.png");
  background-position:bottom;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: 'Poppins', sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: left;
  margin-bottom: 40px;
}

.contact-header h1 {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: white;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
}

.contact-header p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #fff7f0;
  font-family: 'DM Sans';
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contact-form {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: flex;
  gap: 15px;
  
}

.contact-form input{
  color:#b75e15 ;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
  
}
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
  
}


.contact-form textarea {
  resize: none;
  height: 150px;
}

.send-btn {
  background: #fff;
  color: #bd812f;
  border: none;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  height: 50px;
  width: 100%;
  max-width: 425px;
  margin-top: -120px;
  font-family: 'DM Sans';
  font-size: 1rem;
}

.send-btn:hover {
  background: #f7d5b0;
}

.contact-info {
  flex: 1 1 35%;
  background: white;
  border-radius: 12px;
  padding: 25px;
  height: 290px;
    display: flex;
  flex-direction: column;
  justify-content: space-between
}

.info-box h3 {
  color: #bd812f;
  font-size: 1.4rem;
  margin-bottom: 7px;
  margin-top: 5px;
 font-family: 'Josefin Sans', sans-serif;;
}

.info-box p {
  color: #bd812f;
  font-size: 1rem;
  line-height: 1.5;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 5px;
}
.send-btn-div {
  width: 100%;
  display: flex;
  justify-content: flex-end;  /* aligns below right info */
  margin-top: 20px;/* adjust spacing */
}
.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: #bd812f;
  font-size: 1.2rem;
  margin-right: 15px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ec8415;
}

.c-map {
  margin-top: 50px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 1200px;
  height: 450px;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.c-map:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.c-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .contact-hero {
    padding: 40px 5%;
    min-height: auto;
    text-align: center;
    background-position: center;
  }

  .contact-header {
    text-align: center;
  }

  .contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
  }

  .contact-header p {
    font-size: 1rem;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .send-btn {
    margin-top: 5px;
    width: 100%;
    max-width: none;

  }

  .contact-info {
    padding: 20px;
    height: 300px;
    text-align: center;
  }

  .c-map {
    
    height: 350px;
  }
  
}

/* For very small devices (max-width: 480px) */
@media (max-width: 480px) {
  .contact-hero {
    padding: 30px 4%;
  }

  .contact-header h1 {
    font-size: 2rem;
  }

  .contact-header p {
    font-size: 0.95rem;
  }

  .contact-info h3 {
    font-size: 1.2rem;
  }

  .contact-info p {
    font-size: 0.9rem;
  }

  .send-btn {
    font-size: 0.95rem;
    padding: 12px 20px;
  }

  .c-map {

    height: 300px;
  }
}


