/* Reset */
/* Removes default margin/padding and sets box-sizing for all elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* UPDATED: Corrected font paths and removed references to missing font files */
@font-face {
	font-family: 'Rajdhani';
	src: url('Fonts/Rajdhani/Rajdhani-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: 'Rajdhani';
	src: url('Fonts/Rajdhani/Rajdhani-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'Rajdhani';
	src: url('Fonts/Rajdhani/Rajdhani-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'Rajdhani';
	src: url('Fonts/Rajdhani/Rajdhani-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: 'Rajdhani';
	src: url('Fonts/Rajdhani/Rajdhani-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}

html{
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
    /* Sets background, font, text color, disables default cursor for custom effect */
    background-color: #fef9f6;
    font-family: 'Rajdhani', sans-serif;
    color: #1c1c1c;
    overflow-x: hidden; /* Prevents horizontal scroll, needed for custom cursor */
    cursor: none; /* Hides default cursor */
}

/*Custom Cursor effect*/

/* Define CSS variables on the root element */
:root {
  /* Default position is off-screen */
  --x: -100px;
  --y: -100px;
  /* Default scale for the outline */
  --scale: 1;
}

/* Hide the default system cursor */
* {
    cursor: none;
}

/* Base styles for both cursor elements */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    border-radius: 50%;
}

/* Style the central dot */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: black; /* Change this color */
    
    /* Position the dot using the transform property, which is instant */
    transform: translate(var(--x), var(--y)) translate(-50%, -50%);
}

/* Style the follower outline */
.cursor-outline {
    width: 30px;
    height: 30px;
    border: 2px solid black; /* Change this color */
    
    /* Position AND scale the outline using transform. */
    transform: translate(var(--x), var(--y)) translate(-50%, -50%) scale(var(--scale));
    
    /*
      THIS IS THE KEY: Transition ONLY the 'transform' property.
      This is much smoother and more performant.
    */
    transition: transform 0.2s ease-out;
}

/* Main Header Styles */
.main-header {
  background: #fff;
  padding: 20px 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 80px;
}

/* Container */
.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  width: 200px;
  height: auto;
}

/* Navigation */
.nav {
  display: flex;
  gap: 50px;
}
.nav a {
  text-decoration: none;
  color: #444;
  font-weight: 600;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
}
.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}
.nav a:hover {
  color: #000;
}

/* Button */
/* .header-btn {
  padding: 10px 20px;
  border: 2px solid #121212;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header-btn:hover {
  background: #121212;
  color: #fff;
} */


.header-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent; /* Example color */
    color: black;
    text-decoration: none;
    border: 2px solid black; /* Example border color */
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.header-btn:hover {
    background-color: black;
    color: white; /* Example hover color */
}



/* Hamburger Icon */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
  .nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    display: none;
    gap: 15px;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  .nav.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .header-btn {
    display: none;
  }
}


/* Hero Section (First Section) */
/* .hero {
    display: flex;
    padding: 80px 80px;
    background: #fff1ec;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    padding-left: 100px;
    padding-right: 80px;
}

.hero-text h1 {
    font-family: "Tt Commons Pro",Arial,sans-serif;
    font-size: 67px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 50px;
    color: #1c1c1c;
}

.hero-text .info {
    display: flex;
    gap: 60px;
    margin: 20px 0;
}

.font-ux-design {
    font-size: 67px;
}

.font-right-now {
    font-size: 24px;
    font-weight: bold;
}

.font-location {
    font-size: 24px;
    line-height: 1.2;
}

.font-bangladesh {
    font-size: 16px;
    line-height: 1.2;
    margin: 1.4px 0;
    padding-top: 20px;
}

body {
    font-size: 16px;
}

.hero-text p {
    font-family: "Tt Commons Pro",Arial,sans-serif;
    font-size: 16px;
    color: #555;
}

.btn-dark {
    padding: 16px 34px;
    background: #1c1c1c;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 20px;
    display: inline-block;
}

.hero-text .btn-dark:hover {
    background: #fff4ec;
    color: #0d0d0d;
    border: 2px solid #1c1c1c;
}
.btn-dark:hover {
    background: #e0fcd4;
    color: #080808;
    border: #000 solid 2px;
}

.hero-image {
    position: absolute;
    right: 80px;
    top: (100% - 140px);
    z-index: 3;
    transform: translateY(-920%);
}

.hero-image img {
    width: 300px;
    object-fit: cover;
    object-position: center;
} */

/* Highlight Section (Second Section) */
/* .highlight {
    padding: 80px 40px;
    background: #dcffd3;
    position: relative;
    z-index: 1;
    padding-top: calc(80px + 125px);
    text-align: left;
    padding-left: 170px;
}

.highlight h2 {
    font-family: "Tt Commons Pro",Arial,sans-serif;
    font-size: 40px;
    margin-bottom: 20px;
}

.highlight p {
    font-family: "Tt Commons Pro",Arial,sans-serif;
    max-width: 600px;
    line-height: 1.6;
    margin-left: 0;
    text-align: left;
    color: #333;
    margin-bottom: 30px;
} */

/* Hero Section Styles */

/* General Styling */
        body {
            font-family: 'Rajdhani', sans-serif;
            background-color: #ffffff;
            margin: 0;
            overflow-x: hidden; /* Prevents horizontal scroll */
        }

        /* Hero Section Container */
        .hero-section {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            background-color: #fff1ec;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        /* Background Geometric Pattern */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 450px;
            height: 450px;
            background-image:
                linear-gradient(to right, #f2f2f2 1px, transparent 1px),
                linear-gradient(to bottom, #f2f2f2 1px, transparent 1px);
            background-size: 25px 25px;
            transform: rotate(45deg) translate(-30%, -30%);
            opacity: 0.6;
            z-index: 1;
        }


        .hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1300px;
            width: 100%;
            z-index: 2;
            position: relative;
        }

        /* Left Column: Text Content */
        .hero-text {
            max-width: 700px;
            padding: 0 7rem;
            z-index: 5; /* Ensure text is above background elements */
        }

        .hero-text .subtitle {
            font-size: 1.8rem;
            font-weight: 1000;
            color: #333;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .hero-text .title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #212529;
            margin: 0 0 1rem 0;
            line-height: 1.2;
        }

        .hero-text .title .highlight {
            color: #E2495B;
        }

        .hero-text .description {
            font-size: 1rem;
            color: #6c757d;
            line-height: 1.7;
            margin-bottom: 2.5rem;
            max-width: 530px;
        }

        .hero-text .portfolio-button {
    display: inline-flex; /* Use flex to align text and arrow */
    align-items: center;  /* Vertically center text and arrow */
    margin-top: 2rem;     /* Equivalent to mt-8 (32px) */
    background-color: #E2495B; /* Your specified background color */
    color: #ffffff;       /* Text color */
    padding: 14px 28px;   /* Your specified padding */
    font-size: 0.9rem;    /* Your specified font size */
    font-weight: 500;     /* Your specified font weight */
    border-radius: 20px;  /* Your specified border-radius */
    transition: all 0.3s ease; /* Your specified transition */
    box-shadow: 0 4px 15px rgba(226, 73, 91, 0.3); /* Your specified box-shadow */
    border: none;         /* Remove default button border */
    cursor: pointer; 
    text-decoration: none;     /* Indicate it's clickable */
}

/* Hover effect for the button */
.hero-text .portfolio-button:hover {
    background-color: #d13c4c; /* A slightly darker shade for hover */
    box-shadow: 0 6px 20px rgba(226, 73, 91, 0.4); /* Slightly larger shadow on hover */
}

/* Responsive padding for the button (equivalent to md:px-8 md:py-4) */
@media (min-width: 768px) { /* For medium screens and up */
    .hero-text .portfolio-button {
        padding: 16px 32px; /* Equivalent to md:px-8 md:py-4 */
    }
}

/* Style for the arrow span within the button (equivalent to ml-2) */
.hero-text .portfolio-button .arrow {
    margin-left: 0.5rem; /* Space between text and arrow (8px) */
}

/* Ensure you also have the CSS for 'animated-text' if it controls animations */
/* Example (if you don't have it already):
.animated-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animated-text.visible {
    opacity: 1;
    transform: translateY(0);
}
*/

        /* .hero-text .portfolio-button:hover {
            background-color: #d1374a;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(226, 73, 91, 0.4);
        }
        
        .portfolio-button .arrow {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .portfolio-button:hover .arrow {
            transform: translateX(5px);
        } */


        /* === STYLES FOR TEXT LOAD ANIMATION === */
        .animated-text {
             opacity: 0; /* Text is not visible initially */
             transform: translateY(20px); /* Text is slightly lower initially */
             transition: opacity 0.8s ease, transform 0.8s ease; /* Transition for smooth visibility */
        }
        .animated-text.visible {
            opacity: 1; /* Text becomes visible when 'visible' class is added */
            transform: translateY(0); /* Text moves to its original position */
        }

        /* === STYLES FOR THE TYPING ANIMATION CURSOR === */
        .typing-cursor {
            display: inline-block;
            width: 3px; /* Width of the cursor */
            height: 0.9em; /* Height of the cursor */
            background-color: #E2495B; /* Color of the cursor (orange) */
            animation: blink 1s infinite; /* Apply the 'blink' animation */
            vertical-align: baseline; /* Align with the text */
        }
        /* Define the cursor's 'blink' animation */
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        /* === HOVER EFFECT FOR THE PORTFOLIO BUTTON === */
        .portfolio-button .arrow {
            transition: transform 0.3s ease;
        }
        .portfolio-button:hover .arrow {
            transform: translateX(5px); 
        }




        /* Right Column: Image */
        .hero-image-wrapper {
            position: relative;
            flex-shrink: 0;
            width: 500px;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Glow effect is now more accurate to the new image */
        .hero-image-wrapper::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-30%);
            width: 180%;
            height: 100%;
            background: radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 1) 5%, rgba(254, 252, 252, 0.9) 25%, rgba(255, 255, 255, 0) 60%);
            z-index: 2;
        }

        /* Text styles are now more accurate */
        .hero-image-wrapper .background-text {
            position: absolute;
            width: 700%;
            text-align: center;
            font-size: 3rem;
            font-weight: 800;
            user-select: none;
            white-space: nowrap;
            letter-spacing: 4px;
        }

        /* Top text is now darker and bolder to match the image */
        .hero-image-wrapper .background-text.top {
            top: 23%;
            transform: translateY(-50%);
            color: #312e2e; /* Darker grey for top text */
            font-weight: 750;
            z-index: 1; /* BEHIND the image */
        }

        /* UPDATED: Bottom text now has a stroke */
        .hero-image-wrapper .background-text.bottom {
            bottom: 23%;
            transform: translateY(50%);
            color: transparent; /* Make the text fill transparent */
            -webkit-text-stroke: 1px #dcdcdc; /* Add a 1px stroke */
            font-weight: 700; /* Less bold than the top text */
            z-index: 4; /* IN FRONT of the image (z-index: 3) */
        }

        .hero-image-wrapper .main-image {
            position: relative;
            z-index: 3; /* On top of the glow and background text */
            max-width: 450px;
            height: auto;
            display: block;
            filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.1));
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-container {
                flex-direction: column;
                text-align: center;
            }

            .hero-text {
                margin-bottom: 3rem;
                max-width: 100%;
                order: 2; /* Image comes first on mobile */
            }

            .hero-text .description {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-image-wrapper {
                order: 1;
                width: 100%;
                height: auto;
                margin-bottom: 2rem;
            }
            
            .hero-image-wrapper .background-text {
                font-size: 4rem;
            }

            .hero-image-wrapper .main-image {
                max-width: 350px;
            }
        }

        @media (max-width: 768px) {
            .hero-section::before {
                display: none; /* Hide geometric pattern on small screens */
            }

            .hero-text .title {
                font-size: 2.8rem;
            }

            .hero-image-wrapper .background-text {
                font-size: 3rem;
                letter-spacing: 2px;
            }
        }



/* Hero Section Styles */



/* --- Call-to-action section before footer, with profile circle and button */
.contact-call-to-action {
    background-color: #1a1a2e;
    padding: 80px 50px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-call-to-action .contact-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    width: 100%;
}

.contact-call-to-action .profile-circle {
    width: 150px;
    height: 150px;
    background-color: #ffc107;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    line-height: 1.2;
    padding: 10px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.contact-call-to-action .text-content {
    flex-grow: 1;
}

.contact-call-to-action .text-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-call-to-action .text-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #cccccc;
}

.contact-call-to-action .say-hello-button {
    background-color: #6a0dad;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.contact-call-to-action .say-hello-button:hover {
    background-color: #f0e9f7;
    color: #121112;
    border: 2px solid #0b0a0b;
}

/*
   ===================================================================
   NEWLY ADDED SECTION - Experience & Services
   ===================================================================
*/
.experience-wrapper {
    display: flex;
    align-items: stretch;
    gap: 30px;
    max-width: 1300px;
    width: 100%;
    margin: 120px auto;
    padding: 0 20px;
}

.experience-card {
    background-color: #fefafa;
    border-radius: 12px;
    padding: 40px;
    flex-basis: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-content {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.experience-years {
    font-size: 6rem;
    font-weight: 700;
    color: #ff3a5c;
    line-height: 1;
}

.experience-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.experience-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.services-grid {
    flex-basis: 60%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}


.service-card {
    background-color: #f9fcf8;
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid #f1f1f1;
            border-left: 3px solid #E2495B;
            border-bottom: 3px solid #E2495B;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(255, 58, 92, 0.1);
}

.service-icon {
    margin-bottom: 15px; /* Spacing below the icon */
    color: #E2495B; /* Icon color */
}

.service-icon svg {
    width: 50px;
    height: 50px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.service-card p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

@media (max-width: 992px) {
    .experience-wrapper {
        flex-direction: column;
    }
    .experience-card {
        text-align: center;
    }
    .experience-content {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .experience-content {
        flex-direction: column;
        gap: 5px;
    }
    .experience-years {
        font-size: 5rem;
    }
    .experience-text {
        font-size: 1.8rem;
    }
}
/*
   ===================================================================
   END OF NEWLY ADDED SECTION
   ===================================================================
*/

/* EDUCATION SECTION */


        body {
            font-family: 'Rajdhani', sans-serif;
            background-color: #dcffd3;
        }

        .experience-section {
            max-width: 1300px;
            margin: 4rem auto;
            padding: 2rem;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-subtitle {
            color: #E2495B;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #212529;
            margin: 0;
            line-height: 1.2;
        }

        .section-description {
            max-width: 650px;
            margin: 1rem auto 0;
            color: #6c757d;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Education Title with Line */
        .education-header {
            display: flex;
            align-items: center;
            margin-bottom: 2.5rem;
        }

        .education-header h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: #212529;
            margin: 0;
            padding-right: 1.5rem;
            white-space: nowrap;
        }

        .education-header .line {
            flex-grow: 1;
            height: 1px;
            background-color: #e0e0e0;
            position: relative;
        }

        .education-header .line::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background-color: #e0e0e0;
        }

        /* Experience Grid Layout */
        .experience-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        /* Individual Experience Card */
        .experience-card {
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid #f1f1f1;
            border-left: 3px solid #E2495B;
            border-bottom: 3px solid #E2495B;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .experience-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.07);
        }

        .experience-card h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #212529;
            margin-top: 0;
            margin-bottom: 0.5rem;
        }

        .experience-card .date {
            display: inline-block;
            background-color: #212529;
            color: #ffffff;
            font-size: 0.8rem;
            font-weight: 500;
            padding: 4px 12px;
            border-radius: 5px;
            margin-bottom: 1.25rem;
        }

        .experience-card .description {
            color: #6c757d;
            font-size: 1rem;
            line-height: 1.7;
            margin: 0;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .experience-grid {
                grid-template-columns: 1fr;
            }

            .experience-section {
                padding: 1rem;
            }
        }



/* EDUCATION SECTION */



/* --- ORIDO TM SECTION --- */

/* .orido_tm_section {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
}

.orido_tm_about {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    background-color: #6244C5;
    padding: 180px 0 120px 0;
    margin-bottom: 120px;
}

.orido_tm_about .about_in {
    width: 100%;
    height: auto;
    max-width: 1070px;
    margin: 0 auto;
    display: flex;
    align-items: center;
} */

/* .orido_tm_about .left {
    width: 50%;
    padding-right: 50px;
}

.orido_tm_about .left .box {
    background-color: #FFC448;
    display: inline-block;
    overflow: hidden;
    padding-bottom: 85px;
    position: relative;
}

.orido_tm_about .left .box .year {
    font-family: 'Arial', sans-serif; 
    letter-spacing: -4px;
    font-weight: 800; 
    font-size: 395px;
    position: relative;
    margin-right: -30px;
    margin-top: -95px;
    color: #6244C5;
    line-height: 1;
} */

/* .orido_tm_about .left .box .experience {
    font-size: 24px;
    padding-left: 50px;
    margin-top: 6px;
    display: inline-block;
}

.orido_tm_about .left .box .name {
    font-size: 80px;
    color: #6244C5;
    font-weight: bold;
    letter-spacing: -4px;
    line-height: 1;
    text-transform: uppercase;
    position: absolute;
    bottom: -30px;
    left: -20px;
    width: 300%;
}

.orido_tm_about .right {
    width: 50%;
    position: relative;
}

.orido_tm_about .right .element {
    position: absolute;
    top: 0;
    right: 100%; 
    margin-right: 15px;
    margin-top: -20px;
}

.orido_tm_about .right .element .svg {
    width: 80px;
    height: 80px;
    color: transparent; 
} */

/* .orido_tm_about .right .orido_tm_main_title {
    width: 100%;
    float: left;
    margin-bottom: 30px;
}

.orido_tm_about .right .orido_tm_main_title h3 {
    color: #FFFFFF;
    letter-spacing: -2px;
    font-size: 56px;
    font-weight: bold;
}

.orido_tm_about .right .orido_tm_main_title h3 span {
    position: relative;
} */

/* .orido_tm_about .right .text {
    width: 100%;
    float: left;
    margin-bottom: 50px;
} */

/* .orido_tm_about .right .text p {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300; 
    line-height: 32px;
} */

/* .orido_tm_about .right .short {
    width: 100%;
    float: left;
    display: flex;
    align-items: center;
} */

/* .orido_tm_about .right .short .orido_tm_boxed_button a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background-color: #faf9f5;
    color: #12141D;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
} */

/* .orido_tm_about .right .short .orido_tm_boxed_button a:hover {
    background-color: #0c0c0c;
    color: #ffffff;
}

.orido_tm_about .right .short .orido_tm_boxed_button svg {
    width: 25px;
    height: 24px;
    margin-left: 10px;
    fill: #12141D;
    transition: fill 0.3s ease;
}

.orido_tm_about .right .short img {
    max-width: 200px;
    max-height: 200px;
    margin-left: 50px;
} */


/* NEWS */
.orido_tm_news {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    padding-top: 120px;
}

.orido_tm_news .container {
    max-width: 1070px;
    margin: 0 auto;
    padding: 0 15px;
}

.orido_tm_news .orido_tm_main_title {
    width: 100%;
    float: left;
}

.orido_tm_news .orido_tm_main_title h3 {
    letter-spacing: -2px;
    font-size: 50px;
    font-weight: bold;
}

.orido_tm_news .orido_tm_main_title h3 span {
    position: relative;
}

.orido_tm_news .news_list {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    margin-top: 100px;
}

.orido_tm_news .news_list ul {
    margin-left: -30px;
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.orido_tm_news .news_list ul li {
    margin-bottom: 30px;
    float: left;
    padding-left: 30px;
    width: 50%;
    box-sizing: border-box;
}

.orido_tm_news .news_list .list_inner {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    position: relative;
    display: flex;
    align-items: stretch;
    background-color: rgba(255, 246, 217, 0.4);
    padding: 20px 20px 20px 30px;
    overflow: hidden;
    min-height: 220px;
}

.orido_tm_news .news_list .list_inner .left {
    width: 50%;
    position: relative;
    z-index: 1;
    padding-right: 10px;
}

.orido_tm_news .news_list .list_inner .left .metabox {
    width: 100%;
    float: left;
    margin-bottom: 10px;
}

.orido_tm_news .news_list .list_inner .left .metabox ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.orido_tm_news .news_list .list_inner .left .metabox ul li {
    margin-right: 15px;
    display: inline-block;
    padding-left: 0;
    width: auto;
    margin-bottom: 0;
    float: none;
    font-size: 16px;
}

.orido_tm_news .news_list .list_inner .left .metabox ul li span {
    position: relative;
    padding-left: 10px;
}

.orido_tm_news .news_list .list_inner .left .metabox ul li span a {
    color: #FFC448;
    transition: all 0.3s ease;
    text-decoration: none;
}

.orido_tm_news .news_list .list_inner .left .metabox ul li span a:hover {
    text-decoration: underline;
}

.orido_tm_news .news_list .list_inner .left .title {
    width: 100%;
    float: left;
    margin-bottom: 43px;
}

.orido_tm_news .news_list .list_inner .left .title h3 {
    line-height: 1.2;
    font-size: 24px;
    font-weight: bold;
}

.orido_tm_news .news_list .list_inner .left .title h3 a {
    text-decoration: none;
    color: #333;
}

.orido_tm_news .news_list .list_inner .left .orido_tm_simple_button a {
    text-decoration: none;
    color: #333;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.orido_tm_news .news_list .list_inner .left .orido_tm_simple_button a.line_effect {
    position: relative;
    overflow: hidden;
}

.orido_tm_news .news_list .list_inner .left .orido_tm_simple_button a.line_effect:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.orido_tm_news .news_list .list_inner .left .orido_tm_simple_button a.line_effect:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.orido_tm_news .news_list .list_inner .left .orido_tm_simple_button img.svg {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    vertical-align: middle;
    transition: margin-left 0.3s ease;
}

.orido_tm_news .news_list .list_inner .left .orido_tm_simple_button a.line_effect:hover img.svg {
    margin-left: 12px;
}

.orido_tm_news .news_list .list_inner .right {
    width: 50%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.orido_tm_news .news_list .list_inner .right img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0;
    visibility: hidden;
}

.orido_tm_news .news_list .list_inner .right .main {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: all 0.3s ease;
}

.orido_tm_news .news_list .list_inner .right .orido_tm_full_link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    display: block;
    cursor: pointer;
}

.orido_tm_news .news_list .list_inner .shape {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: 100%;
}

.orido_tm_news .news_list .list_inner .shape img.svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_hidden_details {
    display: none;
}

.news_popup_informations .text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.orido_tm_modalbox_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 20px;
}

.orido_tm_modalbox {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 90%;
    position: relative;
    max-height: 70vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* .orido_tm_modalbox .close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    color: #333;
    line-height: 1;
    transition: color 0.3s ease;
    z-index: 10;
}

.orido_tm_modalbox .close:hover {
    color: #f70919;
} */

/* .orido_tm_modalbox .close{
	position: fixed;
	left: 100%;
	top: 0px;
	margin-left: 30px;
	z-index: 10;
}




.orido_tm_modalbox .close a{
	display: block;
	width: 40px;
	height: 40px;
	text-decoration: none;
	color: #fff;
	border:2px solid #fff;
	border-radius: 10px;
	position: relative;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.orido_tm_modalbox .close a:hover{
	border-radius: 100%;
}
.orido_tm_modalbox .close a i{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
} */

.orido_tm_modalbox .modal_image_wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.orido_tm_modalbox .main_modal_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.orido_tm_modalbox .main_modal_image:hover {
    transform: scale(1.02);
}

.orido_tm_modalbox .metabox_popup {
    width: 100%;
    margin-bottom: 10px;
}

.orido_tm_modalbox .metabox_popup ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 15px;
}

.orido_tm_modalbox .metabox_popup ul li {
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: #777;
}

.orido_tm_modalbox .metabox_popup ul li span {
    position: relative;
    padding-left: 10px;
}

.orido_tm_modalbox .metabox_popup ul li:not(:first-child) span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: #999;
    border-radius: 50%;
}

.orido_tm_modalbox .metabox_popup ul li span a {
    color: #FFC448;
    text-decoration: none;
    transition: all 0.3s ease;
}

.orido_tm_modalbox .metabox_popup ul li span a:hover {
    text-decoration: underline;
}

.orido_tm_modalbox h3 {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333;
}

.orido_tm_modalbox .modal_text_content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .orido_tm_modalbox {
        padding: 20px;
    }
    .orido_tm_modalbox h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .orido_tm_modalbox .metabox_popup ul li {
        font-size: 14px;
    }
    .orido_tm_modalbox .modal_image_wrapper {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .orido_tm_modalbox {
        padding: 15px;
        width: 95%;
    }
    .orido_tm_modalbox .close {
        font-size: 25px;
        top: 10px;
        right: 10px;
    }
    .orido_tm_modalbox h3 {
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .orido_tm_news .news_list ul li {
        width: 100%;
        padding-left: 0;
    }
    .orido_tm_news .news_list ul {
        margin-left: 0;
    }
    .orido_tm_news .news_list .list_inner {
        flex-direction: column;
        padding: 20px;
    }
    .orido_tm_news .news_list .list_inner .left,
    .orido_tm_news .news_list .list_inner .right {
        width: 100%;
        padding-right: 0;
    }
    .orido_tm_news .news_list .list_inner .left .title {
        margin-bottom: 20px;
    }
    .orido_tm_news .news_list .list_inner .right {
        margin-top: 20px;
        height: 250px;
    }
    .orido_tm_news .news_list .list_inner .right img {
        display: none;
    }
    .orido_tm_news .news_list .list_inner .right .main {
        position: absolute;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 576px) {
    .orido_tm_news .orido_tm_main_title h3 {
        font-size: 40px;
    }
    .orido_tm_news .news_list {
        margin-top: 50px;
    }
    .orido_tm_news .news_list .list_inner .left .metabox ul li span {
        font-size: 14px;
    }
    .orido_tm_news .news_list .list_inner .left .title h3 {
        font-size: 20px;
    }
    .orido_tm_news .news_list .list_inner .right {
        height: 180px;
    }
}


/* --- SERVICE SECTION --- */

/* Services Section Style */

/* General Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background-color: #d9ffb6;
            color: #111111;
        }
        .services-section {
            padding: 100px 0;

        }

        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title h2 {
            font-size: 56px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
        }

        /* For creating the line under the title */
        .section-title h2::after {
            content: '';
            display: block;
            width: 0;
            height: 4px;
            background-color: #111111;
            margin-top: 10px;
        }

        .services-list ul {
            list-style: none;
        }

        .service-item {
            border-bottom: 1px solid #e0e0e0;
        }

        .service-item:first-child {
            border-top: 1px solid #e0e0e0;
        }

        /* Link Style */
        .service-link {
            display: flex;
            align-items: center;
            padding: 30px 20px;
            text-decoration: none;
            color: inherit; /* Inherit color from parent */
            transition: all 0.4s ease;
        }

        /* Hover Effect */
        .service-item:hover .service-link {
            background-color: #3a3837; /* Hover color */
        }

        /* Number Style */
        .service-number {
            font-size: 18px;
            font-weight: 600;
            color: #03000b; /* Initial color */
            margin-right: 40px;
            transition: color 0.4s ease;
        }

        .service-item:hover .service-number {
            color: #ffffff;
        }

        /* Name Style */
        .service-name {
            font-size: 28px;
            font-weight: 600;
            min-width: 250px; /* Takes some space to keep all items aligned */
            margin-right: 20px;
            transition: color 0.4s ease;
        }

        .service-item:hover .service-name {
            color: #ffffff;
        }

        /* Description Style */
        .service-description {
            font-size: 16px;
            color: #555555;
            flex-grow: 1; /* To take up the remaining space */
            margin-right: 20px;
            transition: color 0.4s ease;
        }

        .service-item:hover .service-description {
            color: #e0e0e0;
        }

        /* Arrow Icon Style */
        .service-arrow svg path {
            stroke: #111111;
            transition: stroke 0.4s ease;
        }

        .service-item:hover .service-arrow svg path {
            stroke: #ffffff;
        }

        /* === RESPONSIVE STYLES START === */

        /* Tablet View (Screens below 992px) */
        @media (max-width: 992px) {
            .section-title h2 {
                font-size: 48px;
            }
            .service-name {
                font-size: 24px;
                min-width: 200px;
            }
            /* The rule to hide the description has been removed. It is now visible on tablets. */
        }

        /* Mobile View (Screens below 768px) */
        @media (max-width: 768px) {
            .services-section {
                padding: 80px 0;
            }
            .section-title h2 {
                font-size: 40px;
            }
            .service-link {
                flex-wrap: wrap; /* This is the key for responsive stacking */
                padding: 25px 15px;
            }
            /* Group number and name together visually */
            .service-number, .service-name {
                align-self: center;
            }
            .service-name {
                font-size: 22px;
                min-width: 0;
                flex-grow: 1; /* Allow it to grow */
            }
            /* Make description take a full row */
            .service-description {
                display: block; /* Ensure it's visible */
                width: 100%; /* Take full width */
                margin-top: 15px; /* Add space above it */
                margin-right: 0;
                font-size: 15px;
                order: 3; /* Ensure it comes after name and number */
                color: #555555; /* Reset color for hover */
            }
            .service-item:hover .service-description {
                 color: #e0e0e0;
            }
            .service-arrow {
                order: 2; /* Place it after the name */
                margin-left: auto; /* Push it to the right */
                align-self: center;
            }
        }

        /* Small Mobile View (Screens below 480px) */
        @media (max-width: 480px) {
             .section-title h2 {
                font-size: 32px;
            }
            .service-name {
                font-size: 20px;
            }
            .service-description {
               text-align: left;
            }
        }

/* --- SERVICE SECTION END --- */




/* --- MAIN CONTACT FOOTER (BOTTOM DARK SECTION FROM IMAGE) --- */
.main-contact-footer {
    background-color: #1a1a2e;
    padding: 40px 50px;
    color: #ffffff;
    border-top: 1px solid #333;
}

.main-contact-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1200px;
    margin: 0 auto;
}

.main-contact-footer .contact-info {
    display: flex;
    gap: 80px;
}

.main-contact-footer .contact-item .label {
    font-size: 0.9em;
    color: #cccccc;
    margin-bottom: 5px;
}

.main-contact-footer .contact-item .value {
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
}

.main-contact-footer .follow-me {
    text-align: right;
}

.main-contact-footer .follow-me .label {
    font-size: 0.9em;
    color: #cccccc;
    margin-bottom: 10px;
}

.main-contact-footer .social-icons {
    display: flex;
    gap: 15px;
}

.main-contact-footer .social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #3d3131;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2em;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.main-contact-footer .social-icon:hover {
    background-color: #938989;
}

/* --- YOUR EXISTING YELLOW FOOTER --- */
.footer-bottom-yellow {
    background: black;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-yellow .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-yellow .footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-yellow .footer-brand img {
    width: 120px;
    height: auto;
}

.footer-bottom-yellow p {
    color: #fcfbfb;
    margin-left: auto;
}


/* Your existing Say Hello Button Styles (modified to use class) */
.say-hello-button {
    padding: 1rem 2rem;
    background-color: #ec4899;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    margin: 0 auto; /* From your provided CSS */
    display: inline-flex; /* To align icon */
    align-items: center;
    justify-content: center;
}

.say-hello-button:hover {
    background-color: #db2777;
    transform: scale(1.05);
}
.say-hello-button i {
    margin-left: 0.5rem; /* Space between text and icon */
}

/* General Body Styles (from popup, modified) */
body {
    box-sizing: border-box; /* Ensure padding and border are included in element's total width and height */
    /* Removed background-color, display, justify-content, align-items, min-height, margin as your main page will handle these */
}

/* Modal Overlay Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show Modal Overlay */
.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Modal Content Styles */
.modal-content {
    background-color: white;
    border-radius: 1.5rem;
    padding: 4rem; /* Reduced padding from 2.5rem */
    width: 90%;
    max-width: 850px; /* Reduced max-width from 800px */
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

/* Modal Content Animation on Show */
.modal-overlay.show .modal-content {
    transform: translateY(0);
}

/* Close Button Styles */
.close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #333;
    line-height: 1;
    padding: 0.4rem;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}
.close-button:hover {
    background-color: #f0f0f0;
}

/* Grid Layout for Modal Content */
.modal-grid-container {
    display: grid;
    grid-template-columns: 1fr; /* Default to single column on small screens */
    gap: 1.5rem;
}

@media (min-width: 1024px) { /* lg: breakpoint */
    .modal-grid-container {
        grid-template-columns: 1fr 1fr; /* Two columns on large screens */
    }
}

/* Left Section: Get in Touch (Text Content) */
.left-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 0.75rem;
}

.left-section .subtitle {
    color: #ef59a4;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.left-section .title {
    font-size: 1.7rem;
    font-weight: 750;
    color: #1f2937;
    margin-bottom: 1.2rem;
    line-height: 1.25;
}

@media (min-width: 768px) { /* md: breakpoint */
    .left-section .title {
        font-size: 2rem;
    }
}

.left-section .description {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Right Section: Contact Form */
.form-section {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Input and Textarea Styles */
input, textarea {
    border: 1px solid #e0e0e0;
    padding: 0.6rem 0.9rem;
    border-radius: 0.5rem;
    width: 100%;
    font-size: 0.95rem;
    color: #333;
    background-color: #f9f9f9;
    box-sizing: border-box;
}
input:focus, textarea:focus {
    outline: none;
    border-color: black;
    box-shadow: 0 0 0 2px rgba(16, 15, 15, 0.2);
}
textarea {
    min-height: 100px;
    resize: vertical;
}

/* Grid for input fields (Name/Phone, Email/Subject) */
.input-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

@media (min-width: 768px) { /* md: breakpoint */
    .input-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Appointment Button Styles */
.appointment-button {
    width: 100%;
    background-color: #383135;
    color: white;
    padding: 0.65rem 1.2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.appointment-button:hover {
    background-color: black;
}

.appointment-button svg {
    margin-left: 0.4rem;
    width: 1.1rem;
    height: 1.1rem;
}


/* --- RESPONSIVE DESIGN FOR THE NEW SECTIONS --- */
 @media (max-width: 992px) {
    .hero-image {
        position: static;
        margin: 20px auto;
        transform: none;
        width: 100%;
        text-align: center;
    }
    .hero-image img {
        width: 200px;
    }
    .hero {
        flex-direction: column;
        padding-bottom: 40px;
    }
    .highlight {
        padding-top: 80px;
    }

    .contact-call-to-action .contact-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .contact-call-to-action .profile-circle {
        margin-bottom: 20px;
    }
    .contact-call-to-action .say-hello-button {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .main-contact-footer .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .main-contact-footer .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .main-contact-footer .follow-me {
        text-align: left;
    }

    .main-contact-footer .social-icons {
        justify-content: flex-start;
    }

    .contact-call-to-action {
        padding: 60px 30px;
    }
    .contact-call-to-action .text-content h1 {
        font-size: 2.5em;
    }
}

@media (max-width: 480px) {
    .contact-call-to-action {
        padding: 40px 20px;
    }
    .contact-call-to-action .text-content h1 {
        font-size: 1.8em;
    }
    .contact-call-to-action .text-content p {
        font-size: 0.9em;
    }
    .main-contact-footer {
        padding: 30px 20px;
    }
    .main-contact-footer .contact-item .value {
        font-size: 1em;
    }
    .main-contact-footer .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }
    .footer-bottom-yellow {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
    }
    .footer-bottom-yellow .container {
        flex-direction: column;
        gap: 10px;
    }
    .footer-bottom-yellow p {
        margin-left: 0;
        margin-top: 10px;
    }
}