@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Rounded:wght@100;300;400;500;700;900&display=swap" rel="stylesheet');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

body {
    cursor: url('pcursor.svg') pointer;
}


.header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background:transparent;
    display:flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo{
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.navbar a{
    position: relative;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
}

.navbar a::before{
    content:'';
    position: absolute;
    top: 100%;
    left:0;
    width:0%;
    height:2px;
    background: #fff;
    transition: 0.3s;
}

.navbar a:hover::before{
    width: 100%;
}
/* Add this for the section */


.animate {
    font-size: 90px;
    color: #fff;
}

/* carousel */
.carousel{
    width: 100vw;
    height: 100vh;
    margin-top: -50px;
    overflow: hidden;
    position: relative;
}

.carousel .list .item{
    width: 180px;
    height: 250px;
    position: absolute;
    top: 80%;
    transform: translateY(-70%);
    left: 70%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background-position: 50% 50%;
    background-size: cover;
    z-index: 100;
    transition: 1s;
}

/* Dark overlay for carousel items */
.carousel .list .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Adjust opacity: 0.5 = lighter, 0.7 = darker */
    z-index: 1;
}

.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.carousel .list .item:nth-child(3){
    left: 67%;
}

.carousel .list .item:nth-child(4){
    left: calc(67% + 200px);
}

.carousel .list .item:nth-child(5){
    left: calc(67% + 400px);
}

.carousel .list .item:nth-child(6){
    left: calc(67% + 600px);
}

.carousel .list .item:nth-child(n+7){
    left: calc(67% + 800px);
    opacity: 0;
}

.list .item .content{
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    width: 400px;
    text-align: left;
    color: #fff;
    display: none;
    z-index: 2; /* Ensure content appears above overlay */
}

.list .item:nth-child(2) .content{
    display: block;
}

.content .title{
    font-size: 60px;
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
    line-height: 1;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Enhanced readability */
}

.content .name{
    font-size: 60px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}

.content .des{
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 20px;
    margin-left: 5px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.9s 1 forwards;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* Enhanced readability */
}

.content .btn{
    margin-left: 5px;
    opacity: 0;
    animation: animate 1s ease-in-out 1.2s 1 forwards;
}

.content .btn button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border: 2px solid #fff;
}

.content .btn button:nth-child(1){
    margin-right: 15px;
}

.content .btn button:nth-child(2){
    background: transparent;
    color: #4ECDC4;
    border: 2px solid #fff;
    transition: 0.3s;
}

.content .btn button:nth-child(2):hover{
    background-color: #4ECDC4;
    color: #fff;
    border-color: #4ECDC4;
}

@keyframes animate {
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }
    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

/* next prev arrows */
.arrows{
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.arrows button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #4ECDC4;
    color: #fff;
    border: none;
    outline: none;
    font-size: 25px;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
    cursor: pointer;
}

.arrows button:hover{
    background: #fff;
    color: #000;
}


/* Responsive Design */
@media screen and (max-width: 999px){
    header{
        padding-left: 50px;
    }

    .list .item .content{
        left: 50px;
    }

    .content .title, .content .name{
        font-size: 70px;
    }

    .content .des{
        font-size: 16px;
    }
}

@media screen and (max-width: 690px){
    header nav a{
        font-size: 14px;
        margin-right: 0;
    }

    .list .item .content{
        top: 40%;
    }

    .content .title, .content .name{
        font-size: 45px;
    }

    .content .btn button{
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* Content Sections Styles */
.content-sections {
    width: 100%;
}

.content-sections .section-item {
    width: 100vw;
    height: 100vh;
    position: relative;
    background-position: 50% 50%;
    background-size: cover;
}

/* Dark overlay for content sections */
.content-sections .section-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Adjust opacity as needed */
    z-index: 1;
}

.content-sections .section-item .content {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    width: 400px;
    text-align: left;
    color: #fff;
    display: block;
    z-index: 2; /* Ensure content appears above overlay */
}

.content-sections .section-item .content .title {
    font-size: 60px;
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
    line-height: 1;
    opacity: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Enhanced readability */
}

.content-sections .section-item .content .name {
    font-size: 60px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(255, 255, 255, 0.8);
    opacity: 1;
}

.content-sections .section-item .content .des {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 20px;
    margin-left: 5px;
    opacity: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* Enhanced readability */
}

/* Enhanced text shadow for better readability on lists */
.content-sections .section-item .content .points ul {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.content-sections .section-item .content .points li {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    color: #fff;
    margin-bottom: 8px;
    font-size: 18px;
}

/* Responsive styles for sections */
@media screen and (max-width: 999px) {
    .content-sections .section-item .content {
        left: 50px;
    }

    .content-sections .section-item .content .title,
    .content-sections .section-item .content .name {
        font-size: 70px;
    }

    .content-sections .section-item .content .des {
        font-size: 30px;
    }
}

@media screen and (max-width: 690px) {
    .content-sections .section-item .content {
        top: 40%;
    }

    .content-sections .section-item .content .title,
    .content-sections .section-item .content .name {
        font-size: 45px;
    }
}


.btn-link {
    padding: 10px 20px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-link:hover {
    background: #14ff72cb;
    color: #fff;
    border-color: #14ff72cb;
}

/* Add this to ensure proper scroll positioning with fixed header */
.section-item {
    scroll-margin-top: 50px;
}


.hr-consulting {
    font-family: 'Montserrat Rounded', sans-serif;
    font-size: 30px;
    /* Adjust size as needed */
    font-weight: 400;
    /* Change to 100, 300, 500, 700, 900 for different thickness */
    color: #333;
    /* Change color as needed */
}
.container {
    width: 90%;
    background: #fff;
    border-radius: 6px;
    padding: 40px;
    margin: 40px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    
  }
  
  .container .content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap; /* allows wrapping on smaller screens */
    gap: 30px;
    text-align: center;
  }
  
  /* Each contact item block */
  .content .details {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Icon styles */
  .content .details i {
    font-size: 28px;
    color: #027f88;
    margin-bottom: 10px;
  }
  
  /* Title of each block (Address, Phone, etc.) */
  .content .details .topic {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000;
  }
  
  /* Text under each topic */
  .content .details .text-one,
  .content .details .text-two {
    font-size: 20px;
    color: #333;
  }
  
  /* Link icons (Facebook, LinkedIn) */
  .content .details a {
    text-decoration: none;
    color: #027f88;
    font-size: 24px;
    margin-top: 5px;
  }
  
  .content .details a:hover {
    color: #0ef;
  }
  
  /* Responsive layout for smaller screens */
  @media (max-width: 768px) {
    .container .content {
      flex-direction: column;
      align-items: center;
    }
  }

/* Quick fix for 1366x768 - add to styles.css */
@media screen and (max-width: 1366px) {
    .companyName span { font-size: 3em !important; }
    .logo-container img.fade-in-image { max-width: 300px !important; }
    .paragraph-wrapper p { font-size: 18px !important; }
    
    /* Make all h1 headings smaller */
    h1 { font-size: 45px !important; }
    .sec-2 h1 { font-size: 45px !important; }
    .sec-3 h1 { font-size: 45px !important; }
    .sec-4 h1 { font-size: 45px !important; }
    .about h1 { font-size: 45px !important; }
    .vision h1 { font-size: 45px !important; }
    .mission h1 { font-size: 45px !important; }
    .know_the_director h1 { font-size: 35px !important; }
    .contact-title { font-size: 35px !important; }
    
    /* Make service boxes smaller */
    .service-box { 
        height: 600px !important;
    }
    
    .service-heading { 
        font-size: 24px !important;
    }
    
    .service-description { 
        font-size: 18px !important;
    }
    
    /* Reduce container spacing */
    .services-container {
        gap: 20px !important;
        padding: 20px 0 !important;
    }
    
    /* Reduce section padding */
    .sec-3 {
        padding-top: 80px !important;
    }
    
    /* Make gap much smaller between heading and service boxes */
    .sec-3 h1 {
        margin-bottom: 10px !important;
    }
    
    /* Condense "Things we think you should know about us" section */
    .sec-4 {
        padding-top: 60px !important;
        padding-bottom: 30px !important;
    }
    
    .sec-4 h1 {
        font-size: 35px !important;
        margin-bottom: 15px !important;
    }
    
    .to_know_container {
        min-height: 400px !important;
        padding: 10px !important;
    }
    
    .to_know_img {
        height: 200px !important;
        margin: 10px 0 !important;
    }
    
    .to_know_points p, .to_know_points1 p {
        font-size: 14px !important;
        line-height: 1.3 !important;
    }
    
    .to_know_paragraph p {
        font-size: 16px !important;
        line-height: 1.4 !important;
        margin: 10px 0 !important;
    }
    
    .to_know_points, .to_know_points1 {
        margin-bottom: 10px !important;
    }
    
    .box1, .box2, .box3, .box4, .box5, .box6 {
        padding: 10px !important;
    }
    
    /* Make About section paragraph text smaller */
    .about p {
        font-size: 16px !important; /* Reduced from 20px */
        line-height: 1.5 !important; /* Tighter line spacing */
    }

    .know_the_director p {
        font-size: 16px !important;
    }
    
    .vision p {
        font-size: 16px !important;
    }

    .mission p {
        font-size: 16px !important;
    }
    
    /* Make contact form smaller */
    .contact-section {
        padding: 80px 20px 40px 20px !important; /* Reduced from 120px 20px 60px 20px */
    }
    
    .contact-title {
        font-size: 32px !important; /* Reduced from 48px */
        margin-bottom: 25px !important; /* Reduced from 40px */
    }
    
    .form-container {
        padding: 30px !important; /* Reduced from 50px */
        max-width: 400px !important; /* Reduced from 500px */
    }
    
    .form-title {
        font-size: 20px !important; /* Reduced from 24px */
        margin-bottom: 25px !important; /* Reduced from 40px */
    }
    
    .form-group {
        margin-bottom: 18px !important; /* Reduced from 25px */
    }
    
    .form-group label {
        font-size: 14px !important; /* Reduced from 16px */
        margin-bottom: 5px !important; /* Reduced from 8px */
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px !important; /* Reduced from 15px */
        font-size: 14px !important; /* Reduced from 16px */
    }
    
    .form-group textarea {
        min-height: 100px !important; /* Reduced from 120px */
    }
    
    .submit-btn {
        padding: 12px !important; /* Reduced from 15px */
        font-size: 16px !important; /* Reduced from 18px */
        margin-top: 8px !important; /* Reduced from 10px */
    }
    
    /* Condense services sections content */
    .content-sections .section-item .content {
        left: 60px !important; /* Reduced from 100px */
        width: 350px !important; /* Reduced from 400px */
    }
    
    .content-sections .section-item .content .title {
        font-size: 40px !important; /* Reduced from 60px */
        line-height: 1.1 !important; /* Tighter line height */
    }
    
    .content-sections .section-item .content .des {
        font-size: 16px !important; /* Reduced from 20px */
        margin-top: 8px !important; /* Reduced from 10px */
        margin-bottom: 15px !important; /* Reduced from 20px */
        line-height: 1.4 !important; /* Tighter line spacing */
    }
    
    .content-sections .section-item .content .points ul {
        margin-top: 10px !important;
    }
    
    .content-sections .section-item .content .points li {
        font-size: 14px !important; /* Reduced from 18px */
        margin-bottom: 4px !important; /* Reduced from 8px */
        line-height: 1.3 !important; /* Tighter line spacing */
    }
    
    /* Condense carousel sections content */
    .carousel .list .item .content {
        left: 60px !important; /* Reduced from 100px */
        width: 350px !important; /* Reduced from 400px */
    }
    
    .carousel .list .item .content .title {
        font-size: 40px !important; /* Reduced from 60px */
        line-height: 1.1 !important; /* Tighter line height */
    }
    
    .carousel .list .item .content .des {
        font-size: 16px !important; /* Reduced from 20px */
        margin-top: 8px !important; /* Reduced from 10px */
        margin-bottom: 15px !important; /* Reduced from 20px */
        line-height: 1.4 !important; /* Tighter line spacing */
    }
    
    .carousel .list .item .content .name {
        font-size: 40px !important; /* Reduced from 60px */
        line-height: 1.1 !important; /* Tighter line height */
    }
}

@media screen and (min-width: 1367px) and (max-width: 1440px) {
    .companyName span { font-size: 3.5em !important; }
    .logo-container img.fade-in-image { max-width: 350px !important; }
    .paragraph-wrapper p { font-size: 20px !important; }
    
    /* Make all h1 headings slightly larger than 1366x768 */
    h1 { font-size: 50px !important; }
    .sec-2 h1 { font-size: 50px !important; }
    .sec-3 h1 { font-size: 50px !important; }
    .sec-4 h1 { font-size: 50px !important; }
    .about h1 { font-size: 50px !important; }
    .vision h1 { font-size: 50px !important; }
    .mission h1 { font-size: 50px !important; }
    .know_the_director h1 { font-size: 40px !important; }
    .contact-title { font-size: 38px !important; }
    
    /* Make service boxes slightly larger */
    .service-box { 
        height: 650px !important;
    }
    
    .service-heading { 
        font-size: 26px !important;
    }
    
    .service-description { 
        font-size: 19px !important;
    }
    
    /* Container spacing */
    .services-container {
        gap: 22px !important;
        padding: 25px 0 !important;
    }
    
    .sec-3 {
        padding-top: 85px !important;
    }
    
    .sec-3 h1 {
        margin-bottom: 12px !important;
    }
    
    /* "Things we think you should know about us" section */
    .sec-4 {
        padding-top: 65px !important;
        padding-bottom: 35px !important;
    }
    
    .sec-4 h1 {
        font-size: 40px !important;
        margin-bottom: 18px !important;
    }
    
    .to_know_container {
        min-height: 450px !important;
        padding: 12px !important;
    }
    
    .to_know_img {
        height: 230px !important;
        margin: 12px 0 !important;
    }
    
    .to_know_points p, .to_know_points1 p {
        font-size: 15px !important;
        line-height: 1.4 !important;
    }
    
    .to_know_paragraph p {
        font-size: 17px !important;
        line-height: 1.5 !important;
        margin: 12px 0 !important;
    }
    
    .to_know_points, .to_know_points1 {
        margin-bottom: 12px !important;
    }
    
    .box1, .box2, .box3, .box4, .box5, .box6 {
        padding: 12px !important;
    }
    
    /* About section paragraphs */
    .about p {
        font-size: 17px !important;
        line-height: 1.6 !important;
    }

    .know_the_director p {
        font-size: 17px !important;
    }
    
    .vision p {
        font-size: 17px !important;
    }

    .mission p {
        font-size: 17px !important;
    }
    
    /* Contact form */
    .contact-section {
        padding: 90px 20px 45px 20px !important;
    }
    
    .contact-title {
        font-size: 36px !important;
        margin-bottom: 28px !important;
    }
    
    .form-container {
        padding: 35px !important;
        max-width: 430px !important;
    }
    
    .form-title {
        font-size: 22px !important;
        margin-bottom: 28px !important;
    }
    
    .form-group {
        margin-bottom: 20px !important;
    }
    
    .form-group label {
        font-size: 15px !important;
        margin-bottom: 6px !important;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 13px !important;
        font-size: 15px !important;
    }
    
    .form-group textarea {
        min-height: 110px !important;
    }
    
    .submit-btn {
        padding: 13px !important;
        font-size: 17px !important;
        margin-top: 9px !important;
    }
    
    /* Services sections content */
    .content-sections .section-item .content {
        left: 70px !important;
        width: 380px !important;
    }
    
    .content-sections .section-item .content .title {
        font-size: 45px !important;
        line-height: 1.2 !important;
    }
    
    .content-sections .section-item .content .des {
        font-size: 17px !important;
        margin-top: 9px !important;
        margin-bottom: 17px !important;
        line-height: 1.5 !important;
    }
    
    .content-sections .section-item .content .points li {
        font-size: 15px !important;
        margin-bottom: 5px !important;
        line-height: 1.4 !important;
    }
    
    /* Carousel sections content */
    .carousel .list .item .content {
        left: 70px !important;
        width: 380px !important;
    }
    
    .carousel .list .item .content .title {
        font-size: 45px !important;
        line-height: 1.2 !important;
    }
    
    .carousel .list .item .content .des {
        font-size: 17px !important;
        margin-top: 9px !important;
        margin-bottom: 17px !important;
        line-height: 1.5 !important;
    }
    
    .carousel .list .item .content .name {
        font-size: 45px !important;
        line-height: 1.2 !important;
    }
}

/* Quick fix for 1536x864 - REDUCED SERVICES SECTION SIZES */
@media screen and (min-width: 1441px) and (max-width: 1536px) {
    .companyName span { font-size: 4em !important; }
    .logo-container img.fade-in-image { max-width: 400px !important; }
    .paragraph-wrapper p { font-size: 22px !important; }
    
    /* Make all h1 headings medium size */
    h1 { font-size: 52px !important; }
    .sec-2 h1 { font-size: 52px !important; }
    .sec-3 h1 { font-size: 52px !important; }
    .sec-4 h1 { font-size: 52px !important; }
    .about h1 { font-size: 52px !important; }
    .vision h1 { font-size: 52px !important; }
    .mission h1 { font-size: 52px !important; }
    .know_the_director h1 { font-size: 42px !important; }
    .contact-title { font-size: 40px !important; }
    
    /* Make service boxes medium size */
    .service-box { 
        height: 700px !important;
    }
    
    .service-heading { 
        font-size: 28px !important;
    }
    
    .service-description { 
        font-size: 20px !important;
    }
    
    /* Container spacing */
    .services-container {
        gap: 25px !important;
        padding: 30px 0 !important;
    }
    
    .sec-3 {
        padding-top: 90px !important;
    }
    
    .sec-3 h1 {
        margin-bottom: 15px !important;
    }
    
    /* "Things we think you should know about us" section */
    .sec-4 {
        padding-top: 70px !important;
        padding-bottom: 40px !important;
    }
    
    .sec-4 h1 {
        font-size: 42px !important;
        margin-bottom: 20px !important;
    }
    
    .to_know_container {
        min-height: 500px !important;
        padding: 15px !important;
    }
    
    .to_know_img {
        height: 280px !important;
        margin: 15px 0 !important;
    }
    
    .to_know_points p, .to_know_points1 p {
        font-size: 16px !important;
        line-height: 1.4 !important;
    }
    
    .to_know_paragraph p {
        font-size: 18px !important;
        line-height: 1.5 !important;
        margin: 15px 0 !important;
    }
    
    .to_know_points, .to_know_points1 {
        margin-bottom: 15px !important;
    }
    
    .box1, .box2, .box3, .box4, .box5, .box6 {
        padding: 15px !important;
    }
    
    /* About section paragraphs */
    .about p {
        font-size: 18px !important;
        line-height: 1.6 !important;
    }

    .know_the_director p {
        font-size: 18px !important;
    }
    
    .vision p {
        font-size: 18px !important;
    }

    .mission p {
        font-size: 18px !important;
    }
    
    /* Contact form */
    .contact-section {
        padding: 100px 20px 50px 20px !important;
    }
    
    .contact-title {
        font-size: 40px !important;
        margin-bottom: 32px !important;
    }
    
    .form-container {
        padding: 40px !important;
        max-width: 460px !important;
    }
    
    .form-title {
        font-size: 23px !important;
        margin-bottom: 32px !important;
    }
    
    .form-group {
        margin-bottom: 22px !important;
    }
    
    .form-group label {
        font-size: 15px !important;
        margin-bottom: 7px !important;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px !important;
        font-size: 15px !important;
    }
    
    .form-group textarea {
        min-height: 115px !important;
    }
    
    .submit-btn {
        padding: 14px !important;
        font-size: 17px !important;
        margin-top: 10px !important;
    }
    
    /* Services sections content - REDUCED SIZES TO PREVENT OVERFLOW */
    .content-sections .section-item .content {
        left: 70px !important; /* Reduced from 80px */
        width: 380px !important; /* Reduced from 420px */
    }
    
    .content-sections .section-item .content .title {
        font-size: 42px !important; /* Reduced from 50px */
        line-height: 1.1 !important; /* Tighter line height */
    }
    
    .content-sections .section-item .content .des {
        font-size: 16px !important; /* Reduced from 18px */
        margin-top: 8px !important; /* Reduced from 10px */
        margin-bottom: 15px !important; /* Reduced from 18px */
        line-height: 1.4 !important; /* Tighter line spacing */
    }
    
    .content-sections .section-item .content .points li {
        font-size: 14px !important; /* Reduced from 16px */
        margin-bottom: 4px !important; /* Reduced from 6px */
        line-height: 1.3 !important; /* Tighter line spacing */
    }
    
    /* Carousel sections content - REDUCED SIZES TO PREVENT OVERFLOW */
    .carousel .list .item .content {
        left: 70px !important; /* Reduced from 80px */
        width: 380px !important; /* Reduced from 420px */
    }
    
    .carousel .list .item .content .title {
        font-size: 42px !important; /* Reduced from 50px */
        line-height: 1.1 !important; /* Tighter line height */
    }
    
    .carousel .list .item .content .des {
        font-size: 16px !important; /* Reduced from 18px */
        margin-top: 8px !important; /* Reduced from 10px */
        margin-bottom: 15px !important; /* Reduced from 18px */
        line-height: 1.4 !important; /* Tighter line spacing */
    }
    
    .carousel .list .item .content .name {
        font-size: 42px !important; /* Reduced from 50px */
        line-height: 1.1 !important; /* Tighter line height */
    }
}

/* Quick fix for 1600x900 - REDUCED SERVICES SECTION SIZES */
@media screen and (min-width: 1537px) and (max-width: 1600px) {
    .companyName span { font-size: 4.5em !important; }
    .logo-container img.fade-in-image { max-width: 450px !important; }
    .paragraph-wrapper p { font-size: 24px !important; }
    
    /* Make all h1 headings larger */
    h1 { font-size: 55px !important; }
    .sec-2 h1 { font-size: 55px !important; }
    .sec-3 h1 { font-size: 55px !important; }
    .sec-4 h1 { font-size: 55px !important; }
    .about h1 { font-size: 55px !important; }
    .vision h1 { font-size: 55px !important; }
    .mission h1 { font-size: 55px !important; }
    .know_the_director h1 { font-size: 45px !important; }
    .contact-title { font-size: 42px !important; }
    
    /* Make service boxes larger */
    .service-box { 
        height: 750px !important;
    }
    
    .service-heading { 
        font-size: 29px !important;
    }
    
    .service-description { 
        font-size: 21px !important;
    }
    
    /* Container spacing */
    .services-container {
        gap: 28px !important;
        padding: 35px 0 !important;
    }
    
    .sec-3 {
        padding-top: 95px !important;
    }
    
    .sec-3 h1 {
        margin-bottom: 18px !important;
    }
    
    /* "Things we think you should know about us" section */
    .sec-4 {
        padding-top: 75px !important;
        padding-bottom: 45px !important;
    }
    
    .sec-4 h1 {
        font-size: 45px !important;
        margin-bottom: 22px !important;
    }
    
    .to_know_container {
        min-height: 550px !important;
        padding: 18px !important;
    }
    
    .to_know_img {
        height: 320px !important;
        margin: 18px 0 !important;
    }
    
    .to_know_points p, .to_know_points1 p {
        font-size: 17px !important;
        line-height: 1.5 !important;
    }
    
    .to_know_paragraph p {
        font-size: 19px !important;
        line-height: 1.6 !important;
        margin: 18px 0 !important;
    }
    
    .to_know_points, .to_know_points1 {
        margin-bottom: 18px !important;
    }
    
    .box1, .box2, .box3, .box4, .box5, .box6 {
        padding: 18px !important;
    }
    
    /* About section paragraphs */
    .about p {
        font-size: 19px !important;
        line-height: 1.7 !important;
    }

    .know_the_director p {
        font-size: 19px !important;
    }
    
    .vision p {
        font-size: 19px !important;
    }

    .mission p {
        font-size: 19px !important;
    }
    
    /* Contact form */
    .contact-section {
        padding: 110px 20px 55px 20px !important;
    }
    
    .contact-title {
        font-size: 44px !important;
        margin-bottom: 35px !important;
    }
    
    .form-container {
        padding: 45px !important;
        max-width: 480px !important;
    }
    
    .form-title {
        font-size: 23px !important;
        margin-bottom: 35px !important;
    }
    
    .form-group {
        margin-bottom: 24px !important;
    }
    
    .form-group label {
        font-size: 15px !important;
        margin-bottom: 7px !important;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px !important;
        font-size: 15px !important;
    }
    
    .form-group textarea {
        min-height: 118px !important;
    }
    
    .submit-btn {
        padding: 14px !important;
        font-size: 18px !important;
        margin-top: 10px !important;
    }
    
    /* Services sections content - REDUCED SIZES TO PREVENT OVERFLOW */
    .content-sections .section-item .content {
        left: 75px !important; /* Reduced from 90px */
        width: 400px !important; /* Reduced from 450px */
    }
    
    .content-sections .section-item .content .title {
        font-size: 45px !important; /* Reduced from 52px */
        line-height: 1.1 !important; /* Tighter line height */
    }
    
    .content-sections .section-item .content .des {
        font-size: 17px !important; /* Reduced from 19px */
        margin-top: 8px !important; /* Reduced from 10px */
        margin-bottom: 16px !important; /* Reduced from 19px */
        line-height: 1.4 !important; /* Tighter line spacing */
    }
    
    .content-sections .section-item .content .points li {
        font-size: 15px !important; /* Reduced from 17px */
        margin-bottom: 5px !important; /* Reduced from 7px */
        line-height: 1.3 !important; /* Tighter line spacing */
    }
    
    /* Carousel sections content - REDUCED SIZES TO PREVENT OVERFLOW */
    .carousel .list .item .content {
        left: 75px !important; /* Reduced from 90px */
        width: 400px !important; /* Reduced from 450px */
    }
    
    .carousel .list .item .content .title {
        font-size: 45px !important; /* Reduced from 52px */
        line-height: 1.1 !important; /* Tighter line height */
    }
    
    .carousel .list .item .content .des {
        font-size: 17px !important; /* Reduced from 19px */
        margin-top: 8px !important; /* Reduced from 10px */
        margin-bottom: 16px !important; /* Reduced from 19px */
        line-height: 1.4 !important; /* Tighter line spacing */
    }
    
    .carousel .list .item .content .name {
        font-size: 45px !important; /* Reduced from 52px */
        line-height: 1.1 !important; /* Tighter line height */
    }
}